Files
player/Project/Src/MyWin/MyWinCore/mywin_font.h
2025-07-05 19:47:28 +08:00

32 lines
327 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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