guifont.h
来自「This software performs code conversion o」· C头文件 代码 · 共 33 行
H
33 行
// guifont.h
#ifndef GUIFONT_H
#define GUIFONT_H
#ifdef __cplusplus
extern "C" {
#endif
int GetDesktopFontA ( char *szFontName, int *pHeight ) ;
int GetDesktopFontW ( wchar_t *szFontName, int *pHeight ) ;
HFONT CreateFontByCodePage ( int nSize, int nCodePage ) ;
HFONT CreateGuiFont ( int nSize ) ;
HFONT CreateVistaGuiFont ( int nSize ) ;
#ifdef UNICODE
#define GetDesktopFont GetDesktopFontW
#else
#define GetDesktopFont GetDesktopFontA
#endif
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?