Windows NT 4.0 source code leak
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.

24 lines
454 B

4 years ago
  1. class CFontMap {
  2. public:
  3. CFontMap(PSTR pszLine);
  4. BOOL IsInitialized() { return m_fInitialized; }
  5. protected:
  6. char m_szFace1[MAX4_FONTNAME];
  7. int m_nMin1;
  8. int m_nMax1;
  9. int m_nCharset1;
  10. char m_szFace2[MAX4_FONTNAME];
  11. BOOL m_fRelative;
  12. int m_nSize2;
  13. int m_nCharset2;
  14. BOOL m_fInitialized;
  15. CFontMap* m_pNext;
  16. BOOL Replace(PSTR pszFace, int& rnSize, int& rnCharset);
  17. friend BOOL ReplaceFont(PSTR pszTypeface, int& rnSize, int& rnCharset);
  18. };