?? ucguifontgen.h
字號:
#ifndef __UCGUIFONTGEN_H__
#define __UCGUIFONTGEN_H__
#ifdef __cplusplus
#define UCGUIFONTGEN_EXPORTS extern "C" __declspec (dllexport)
#else
#define UCGUIFONTGEN_EXPORTS __declspec (dllexport)
#endif
typedef struct {
BYTE XSize;
BYTE XDist;
BYTE BytesPerLine;
} CHARINFO;
typedef struct tagOutPutChar{
BYTE IsOut; //是否輸出...
BYTE CharCode[3]; //字符編碼...
tagOutPutChar* lpNext;
} OutPutChar;
typedef struct tagOutPutCharProp{
char firstCharacter[3];
char lastCharacter[3];
char propName[10];
char* lpPropChar;
tagOutPutCharProp* lpNext;
} OutPutCharProp;
typedef struct tagOutputFontName{
char fontName_cn[50]; //中文字體名...
char fontName_en[50]; //英文字體名...
} OutputFontName;
UCGUIFONTGEN_EXPORTS bool GenOneFontHZ(int area1, int area2);
UCGUIFONTGEN_EXPORTS bool GenAllFontHZ();
UCGUIFONTGEN_EXPORTS bool ShowGenFontHZDlg();
CHARINFO GetOneCharInfo(int area1, int area2);
void WirteHZKFile(char* buf, int len, FILE* fp);
bool GenFontInfo(char* lastPropName);
char* GenFontPropInfo();
#endif //__UCGUIFONTGEN_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -