muiload.h 766 B

123456789101112131415161718192021222324
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _INC_MUILOAD
  7. #define _INC_MUILOAD
  8. /* TODO: These are functions provided in muiload library and aren't part
  9. of DLL. Here implementation of those functions in crt is necessary. */
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. WINBOOL WINAPI FreeMUILibrary(HMODULE hResModule);
  14. HINSTANCE WINAPI LoadMUILibrary(LPCTSTR pszFullModuleName,DWORD dwLangConvention,LANGID LangID);
  15. WINBOOL WINAPI GetUILanguageFallbackList(PWSTR pFallbackList,ULONG cchFallbackList,PULONG pcchFallbackListOut);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /*_INC_MUILOAD*/