mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
478 B
26 lines
478 B
|
|
class CFontMap {
|
|
public:
|
|
CFontMap(PSTR pszLine);
|
|
BOOL IsInitialized() { return m_fInitialized; }
|
|
|
|
protected:
|
|
char m_szFace1[MAX4_FONTNAME];
|
|
int m_nMin1;
|
|
int m_nMax1;
|
|
int m_nCharset1;
|
|
|
|
char m_szFace2[MAX4_FONTNAME];
|
|
BOOL m_fRelative;
|
|
int m_nSize2;
|
|
int m_nCharset2;
|
|
|
|
BOOL m_fInitialized;
|
|
|
|
CFontMap* m_pNext;
|
|
|
|
BOOL Replace(PSTR pszFace, int* pSize, int* pCharset);
|
|
friend BOOL ReplaceFont(PSTR pszTypeface, int* pSize, int* pCharset);
|
|
};
|
|
|
|
extern CFontMap* g_pFirst;
|