mui.h

来自「This software performs code conversion o」· C头文件 代码 · 共 30 行

H
30
字号
// mui.h

#ifndef MUI_H
#define MUI_H

#ifdef __cplusplus
extern "C" {
#endif


int LoadMuiLibrary ( int nLangId ) ;
int InitMuiLibraryA ( const void *nType, int nId, const char *szDirectory, const char *szPrefix ) ;
int InitMuiLibraryW ( const void *nType, int nId, const wchar_t *szDirectory, const wchar_t *szPrefix ) ;


#ifdef UNICODE
#define InitMuiLibrary InitMuiLibraryW
#else
#define InitMuiLibrary InitMuiLibraryA
#endif


#ifdef __cplusplus
}
#endif

#endif


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?