Source code of Windows XP (NT5)
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.

32 lines
852 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Forms
  4. // Copyright (c) 1994 - 1999 Microsoft Corporation. All rights reserved.*///
  5. // File: intl.hxx
  6. //
  7. // Contents: Codepage definitions
  8. //
  9. //----------------------------------------------------------------------------
  10. #ifndef _CODEPAGE_H_
  11. #define _CODEPAGE_H_
  12. #pragma once
  13. typedef UINT CODEPAGE; // Codepage corresponds to Mlang ID
  14. #define CP_UNDEFINED CODEPAGE(-1)
  15. #define CP_UCS_2 1200
  16. #define CP_1250 1250
  17. #define CP_1251 1251
  18. #define CP_1252 1252
  19. #define CP_1253 1253
  20. #define CP_1254 1254
  21. #define CP_1255 1255
  22. #define CP_1256 1256
  23. #define CP_1257 1257
  24. #define CP_1258 1258
  25. #define CP_UTF_8 65001
  26. #define CP_UCS_4 12000
  27. #endif