STDAFX.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5. //
  6. // This is a part of the Microsoft Foundation Classes C++ library.
  7. // Copyright (C) 1992-1997 Microsoft Corporation
  8. // All rights reserved.
  9. //
  10. // This source code is only intended as a supplement to the
  11. // Microsoft Foundation Classes Reference and related
  12. // electronic documentation provided with the library.
  13. // See these sources for detailed information regarding the
  14. // Microsoft Foundation Classes product.
  15. #ifndef _UNICODE
  16. #define VC_EXTRALEAN // use stripped down Win32 headers
  17. #endif
  18. #define CONVERTERS
  19. #include <afxwin.h>         // MFC core and standard components
  20. #include <afxext.h>         // MFC extensions
  21. #include <afxole.h>         // MFC OLE classes
  22. #include <afxodlgs.h>       // MFC OLE dialog classes
  23. #include <afxcmn.h>
  24. #include <afxrich.h>
  25. #include <afxpriv.h>
  26. #define HORZ_TEXTOFFSET 15
  27. #define VERT_TEXTOFFSET 5
  28. class CDisplayIC : public CDC
  29. {
  30. public:
  31. CDisplayIC() { CreateIC(_T("DISPLAY"), NULL, NULL, NULL); }
  32. };
  33. struct CCharFormat : public CHARFORMAT
  34. {
  35. CCharFormat() {cbSize = sizeof(CHARFORMAT);}
  36. BOOL operator==(CCharFormat& cf);
  37. };
  38. struct CParaFormat : public _paraformat
  39. {
  40. CParaFormat() {cbSize = sizeof(_paraformat);}
  41. BOOL operator==(PARAFORMAT& pf);
  42. };
  43. #include "doctype.h"
  44. #include "chicdial.h"