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.

59 lines
886 B

  1. /*++
  2. Copyright (c) 1996-1997 Microsoft Corporation
  3. Module Name:
  4. globals.c
  5. Abstract:
  6. Global variables used by the Universal printer driver library
  7. Environment:
  8. Win32 subsystem, Unidrv driver
  9. Revision History:
  10. 11-11-97 -eigos-
  11. Created it
  12. dd-mm-yy -author-
  13. description
  14. --*/
  15. #include "precomp.h"
  16. UINT guiCharsets[] = {
  17. ANSI_CHARSET,
  18. SHIFTJIS_CHARSET,
  19. HANGEUL_CHARSET,
  20. JOHAB_CHARSET,
  21. GB2312_CHARSET,
  22. CHINESEBIG5_CHARSET,
  23. HEBREW_CHARSET,
  24. ARABIC_CHARSET,
  25. GREEK_CHARSET,
  26. TURKISH_CHARSET,
  27. BALTIC_CHARSET,
  28. EASTEUROPE_CHARSET,
  29. RUSSIAN_CHARSET,
  30. THAI_CHARSET };
  31. UINT guiCodePages[] ={
  32. 1252,
  33. 932,
  34. 949,
  35. 1361,
  36. 936,
  37. 950,
  38. 1255,
  39. 1256,
  40. 1253,
  41. 1254,
  42. 1257,
  43. 1250,
  44. 1251,
  45. 874 };