Files
player/Project/Src/MyWin/MyWinCore/mywin_font.h

32 lines
370 B
C
Raw Normal View History

2025-06-27 00:32:57 +08:00
#ifndef MYWIN_FONT_H__
#define MYWIN_FONT_H__
//设置字体尺寸
int WIN_SetFontSize (int size);
//设置字体类型
int WIN_SetFontType(int type);
//获取字体高度
int WIN_GetFontHight (void);
//获取字体宽度
int WIN_GetFontWidth (void);
//设置字体模式1填充背景0不填充背景
int WIN_SetFontMode (int mode);
#endif