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.

31 lines
599 B

  1. //
  2. // uwrap.h
  3. //
  4. // Public interface to unicode wrappers for Win32 API
  5. //
  6. //
  7. // Copyright(C) Microsoft Corporation 2000
  8. // Author: Nadim Abdo (nadima)
  9. //
  10. //
  11. #ifndef _wraputl_h_
  12. #define _wraputl_h_
  13. //Don't wrap on WIN64 as there is no Win9x (thankfully).
  14. #if defined(UNICODE) && !defined(_WIN64)
  15. //Top level unicode wrapper class
  16. extern BOOL g_bRunningOnNT;
  17. class CUnicodeWrapper
  18. {
  19. public:
  20. CUnicodeWrapper();
  21. ~CUnicodeWrapper();
  22. BOOL InitializeWrappers();
  23. BOOL CleanupWrappers();
  24. };
  25. #endif //defined(UNICODE) && !defined(_WIN64)
  26. #endif //_uwrap_h_