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.

38 lines
850 B

  1. /*
  2. FE_UTIL.H
  3. Far East Countries helper
  4. 03/02/98
  5. */
  6. #ifndef __FE_UTIL__
  7. #define __FE_UTIL__
  8. #include <windows.h>
  9. #define JAPAN_LCID 411
  10. #define KOREAN_LCID 412
  11. #define TRADITIONAL_CHINA_LCID 404
  12. #define SIMPLIFIED_CHINA_LCID 804
  13. #define MAX_FE_COUNTRIES_SUPPORTED 256
  14. typedef enum
  15. {
  16. kNotInitialised,
  17. kFarEastCountry,
  18. kNotAFECountry,
  19. UnknownCountry
  20. }FeCountriesIndex;
  21. typedef enum {
  22. kFEWithNonJapaneaseScreen,
  23. kFEWithJapaneaseScreen // Returned for screen type
  24. }FeScreenType;
  25. extern FeCountriesIndex gWhatFECountry; // This is a global variable
  26. // Which holds the present FE Country
  27. extern FeScreenType gWhichFEScreenTye; // This is a global variable
  28. // Which holds the FE Screen Type
  29. FeCountriesIndex IsFarEastCountry(HINSTANCE hIns);
  30. FeScreenType GetFeScreenType();
  31. #endif