⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osdfont.h

📁 MiniWinOuterSM MiniWinOuterSM
💻 H
字号:
// logFont.h: interface for the logFont class.
//
//////////////////////////////////////////////////////////////////////

#ifndef __OSDFONT_H__
#define __OSDFONT_H__
#include"stdio.h"
#include"devfont.h"

#ifdef __cplusplus
extern "C"{
#endif
//name:该设备字体的名称。MiniGUI 中设备字体的名称格式如下: 
//<type>-<name>-<style>-<width>*<height>-<charset1[,charset2]> 

	FONTOPS*GetFontByName(const char*fntname);
	int InstallFont(FONTOPS*fnt);
	int InitFonts(void);
	GDIFONT*GdiCreateFont(const char*type,const char* family, const char* charset,
		int height,int width,unsigned char bItalic,
		unsigned char bUnderline,unsigned char cStrikeOut);
	void GdiDeleteFont(GDIFONT*font);
#ifdef __cplusplus
}
#endif

#endif         

⌨️ 快捷键说明

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