devfont.h

来自「在ecos 下mingui 的移植开发」· C头文件 代码 · 共 62 行

H
62
字号
//// $Id: devfont.h,v 1.7 2000/10/08 09:31:00 weiym Exp $//// devfont.h: the head file of Device Font Manager.//// Copyright (c) 2000, Wei Yongming.// Copyright (c) 2000, BluePoint Software.//#ifndef GUI_DEVFONT_H    #define GUI_DEVFONT_H#ifdef __cplusplusextern "C" {#endif  /* __cplusplus *//* defined in varbitmap.c */#ifdef _VBF_SUPPORTBOOL InitIncoreVBFonts (void);void TermIncoreVBFonts (void);BOOL InitVarBitmapFonts (void);void TermVarBitmapFonts (void);#endif#ifdef _RBF_SUPPORT/* defined in rawbitmap.c */BOOL InitRawBitmapFonts (void);void TermRawBitmapFonts (void);#endif#ifdef _TTF_SUPPORT/* defined in freetype.c */BOOL InitFreeTypeFonts (void);void TermFreeTypeFonts (void);#endif#ifdef _TYPE1_SUPPORT/* defined in freetype.c */BOOL InitType1Fonts (void);void TermType1Fonts (void);#endif/* Device font management functions */void AddSBDevFont (DEVFONT* dev_font);void AddMBDevFont (DEVFONT* dev_font);void ResetDevFont (void);DEVFONT* GetMatchedSBDevFont (LOGFONT* log_font);DEVFONT* GetMatchedMBDevFont (LOGFONT* log_font);#ifdef _DEBUGvoid dumpDevFonts (void);#endif#ifdef __cplusplus}#endif  /* __cplusplus */#endif // GUI_DEVFONT_H

⌨️ 快捷键说明

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