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.

34 lines
1.1 KiB

  1. /**************************************************/
  2. /* */
  3. /* */
  4. /* EudcEditor Utillity funcs */
  5. /* */
  6. /* */
  7. /* Copyright (c) 1997-1999 Microsoft Corporation. */
  8. /**************************************************/
  9. int OutputMessageBox( HWND hWnd, UINT TitleID, UINT MessgID, BOOL OkFlag);
  10. #ifdef BUILD_ON_WINNT
  11. int OutputMessageBoxEx( HWND hWnd, UINT TitleID, UINT MessgID, BOOL OkFlag, ...);
  12. #endif // BUILD_ON_WINNT
  13. void GetStringRes( LPTSTR lpStr, UINT sID, int nLength);
  14. void ConvStringRes( LPTSTR lpStr, CString String, int nDestSize);
  15. #ifdef UNICODE
  16. #define Mytcsrchr wcsrchr
  17. #define Mytcschr wcschr
  18. #define Mytcstok wcstok
  19. #define Mytcstol wcstol
  20. #define Mytcsstr wcsstr
  21. #define Myttoi _wtoi
  22. #else
  23. char * Mystrrchr(char *pszString, char ch);
  24. char * Mystrchr(char *pszString, char ch);
  25. #define Mytcsrchr Mystrrchr
  26. #define Mytcschr Mystrchr
  27. #define Mytcstok strtok
  28. #define Mytcstol strtol
  29. #define Mytcsstr strstr
  30. #define Myttoi atoi
  31. #endif