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.

36 lines
585 B

  1. //
  2. // Author: AdamEd
  3. // Date: October 1998
  4. //
  5. // Declarations for implementation of language support
  6. // in the Class Store interface module
  7. //
  8. //
  9. //---------------------------------------------------------------------
  10. //
  11. #if !defined(_CSLANG_HXX_)
  12. #define _CSLANG_HXX_
  13. void InitializeLanguageSupport();
  14. DWORD GetLanguagePriority(LANGID PackageLangId, DWORD dwActFlags);
  15. __inline BOOL MatchLanguage(LANGID PackageLangId, DWORD dwActFlags)
  16. {
  17. return GetLanguagePriority(PackageLangId, dwActFlags);
  18. }
  19. extern LANGID gSystemLangId;
  20. #endif // !defined(_CSLANG_HXX_)