SystemFont.h
上传用户:kssdz899
上传日期:2007-01-08
资源大小:79k
文件大小:0k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #ifndef SYSTEMFONT_H
  2. #define SYSTEMFONT_H
  3. class CSystemFont
  4. {
  5. public:
  6. CSystemFont() {}
  7. ~CSystemFont();
  8. CFont* operator()();
  9. private:
  10. void CreateSystemFont();
  11. CFont m_Font;
  12. };
  13. #endif