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.

43 lines
659 B

  1. /*++
  2. Copyright (c) 1998-2000 Microsoft Corporation
  3. Module Name:
  4. strcnv.h
  5. Abstract:
  6. This module defines Ansi/Unicode conversion with a specific code page.
  7. Environment:
  8. Kernel mode
  9. --*/
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif __cplusplus
  14. VOID
  15. CodePageConversionInitialize(
  16. );
  17. VOID
  18. CodePageConversionCleanup(
  19. );
  20. INT ConvertToAndFromWideChar(
  21. UINT CodePage,
  22. LPWSTR WideCharString,
  23. INT BytesInWideCharString,
  24. LPSTR MultiByteString,
  25. INT BytesInMultiByteString,
  26. BOOLEAN ConvertToWideChar
  27. );
  28. #ifdef __cplusplus
  29. } // extern "C"
  30. #endif __cplusplus