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
442 B

  1. /*************************************************************/
  2. /* Name: MSLCID.h
  3. /* Description:
  4. /*************************************************************/
  5. #ifndef MSLCID_H_INCLUDE
  6. #define MSLCID_H_INCLUDE
  7. class MSLangID
  8. {
  9. public:
  10. virtual ~MSLangID() {};
  11. MSLangID();
  12. struct LanguageList
  13. {
  14. UINT ResourceID;
  15. WORD LangID;
  16. };
  17. int m_LLlength;
  18. LanguageList* m_LL;
  19. LPTSTR GetLangFromLangID(WORD langID);
  20. };
  21. #endif