StdAfx.h 938 B

12345678910111213141516171819202122232425262728
  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. #ifndef STDAFX_H
  6. #define STDAFX_H
  7. #pragma comment(linker,"/ignore:4089") // all references to "xxx.dll" discarded by /OPT:REF
  8. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  9. #include <afxwin.h> // MFC core and standard components
  10. #include <afxext.h> // MFC extensions
  11. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  12. #ifndef _AFX_NO_AFXCMN_SUPPORT
  13. #include <afxcmn.h> // MFC support for Windows Common Controls
  14. #endif // _AFX_NO_AFXCMN_SUPPORT
  15. #include "XTrace.h"
  16. #define VIEWCLASS CXListCtrlTestDlg
  17. #define VIEWCLASS_HEADER_FILE "XListCtrlTestDlg.h"
  18. //{{AFX_INSERT_LOCATION}}
  19. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  20. #endif //STDAFX_H