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.

23 lines
614 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_UTF_8 65001
  17. #define CP_UCS_4 12000
  18. #endif