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.

41 lines
709 B

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