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.

64 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1996 - 1999 Microsoft Corporation
  3. Module Name:
  4. fd_glyhph.h
  5. Abstract:
  6. Stock FD_GLYPHSET data definitions.
  7. Environment:
  8. Windows NT printer drivers
  9. Revision History:
  10. 01/21/96 -eigos-
  11. Created it.
  12. --*/
  13. #ifndef _FD_GLYPH_H_
  14. #define _FD_GLYPH_H_
  15. //
  16. // Stock FD_GLYPHSET id
  17. //
  18. #define STOCK_GLYPHSET_932 0 // Japan
  19. #define STOCK_GLYPHSET_936 1 // Chinese (PRC, Singapore)
  20. #define STOCK_GLYPHSET_949 2 // Korean
  21. #define STOCK_GLYPHSET_950 3 // Chinese (Taiwan, Hong Kong)
  22. #define MAX_STOCK_GLYPHSET 4
  23. //
  24. // Codepage macros
  25. //
  26. #define CP_SHIFTJIS_932 932
  27. #define CP_GB2312_936 936
  28. #define CP_WANSUNG_949 949
  29. #define CP_CHINESEBIG5_950 950
  30. //
  31. // Predefined GTT Resource ID
  32. //
  33. #define GTT_CC_CP437 1
  34. #define GTT_CC_CP850 2
  35. #define GTT_CC_CP863 3
  36. #define GTT_CC_CBIG5 10
  37. #define GTT_CC_ISC 11
  38. #define GTT_CC_JIS 12
  39. #define GTT_CC_JIS_ANK 13
  40. #define GTT_CC_NS86 14
  41. #define GTT_CC_TCA 15
  42. #define GTT_CC_GB2312 16
  43. #define GTT_CC_WANSUNG 17
  44. #endif // _FD_GLYPH_H_