Leaked source code of windows server 2003
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

  1. /*****************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 2000
  4. *
  5. * TITLE: AppUtil.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * DATE: 2000/11/14
  10. *
  11. * DESCRIPTION: Misc application utilities
  12. *
  13. *****************************************************************************/
  14. #ifndef _APPUTIL_H_
  15. #define _APPUTIL_H_
  16. HRESULT AppUtil_ConvertToWideString(const TCHAR *pszStringToConvert,
  17. WCHAR *pwszString,
  18. UINT cchString);
  19. HRESULT AppUtil_ConvertToTCHAR(const WCHAR *pwszStringToConvert,
  20. TCHAR *pszString,
  21. UINT cchString);
  22. int AppUtil_MsgBox(UINT uiCaption,
  23. UINT uiTextResID,
  24. UINT uiStyle,
  25. ...);
  26. #endif // _APPUTIL_H_