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.

25 lines
517 B

  1. // langtax.h
  2. // rsarac & aguha
  3. // July 10, 2000
  4. #ifndef _LANGTAX
  5. #define _LANGTAX
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. extern int GetIndexFromLANG(WORD wIDLanguage);
  10. extern int GetIndexFromLocale(wchar_t *wszLang);
  11. extern int GetClassCountLANG(int iLangIndex);
  12. extern wchar_t *GetClassNameLANG(int iLangIndex, int iClassIndex);
  13. extern int GetClassFromLANG(int iLangIndex, wchar_t wChar);
  14. extern BOOL IsLatinLANG(int iLangIndex);
  15. extern wchar_t *GetNameLANG(int iLangIndex);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif