32 lines
370 B
C
32 lines
370 B
C
|
#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
|
|||
|
|