stdafx.h 595 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // stdafx.h
  2. #pragma once
  3. #ifndef VC_EXTRALEAN
  4. #define VC_EXTRALEAN
  5. #endif
  6. #ifndef WINVER
  7. #define WINVER 0x0400
  8. #endif
  9. #ifndef _WIN32_WINNT
  10. #define _WIN32_WINNT 0x0400
  11. #endif
  12. #ifndef _WIN32_WINDOWS
  13. #define _WIN32_WINDOWS 0x0410
  14. #endif
  15. #ifndef _WIN32_IE
  16. #define _WIN32_IE 0x0400
  17. #endif
  18. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
  19. #define _AFX_ALL_WARNINGS
  20. #include <afxwin.h>
  21. #include <afxext.h>
  22. #include <afxdisp.h>
  23. #include <afxmt.h>
  24. #include <afxdtctl.h>
  25. #ifndef _AFX_NO_AFXCMN_SUPPORT
  26. #include <afxcmn.h>
  27. #endif // _AFX_NO_AFXCMN_SUPPORT