You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
991 B
33 lines
991 B
/*****************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORPORATION, 2000
|
|
*
|
|
* TITLE: AppUtil.h
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* DATE: 2000/11/14
|
|
*
|
|
* DESCRIPTION: Misc application utilities
|
|
*
|
|
*****************************************************************************/
|
|
#ifndef _APPUTIL_H_
|
|
#define _APPUTIL_H_
|
|
|
|
HRESULT AppUtil_ConvertToWideString(const TCHAR *pszStringToConvert,
|
|
WCHAR *pwszString,
|
|
UINT cchString);
|
|
|
|
HRESULT AppUtil_ConvertToTCHAR(const WCHAR *pwszStringToConvert,
|
|
TCHAR *pszString,
|
|
UINT cchString);
|
|
|
|
int AppUtil_MsgBox(UINT uiCaption,
|
|
UINT uiTextResID,
|
|
UINT uiStyle,
|
|
...);
|
|
|
|
|
|
|
|
|
|
#endif // _APPUTIL_H_
|