stdafx.h 559 B

1234567891011121314151617181920212223242526
  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. #pragma once
  6. // Change these values to use different versions
  7. #define WINVER 0x0601
  8. #define _WIN32_WINNT 0x0601
  9. #define _WIN32_IE 0x0700
  10. #define _RICHEDIT_VER 0x0500
  11. #define WIN32_LEAN_AND_MEAN
  12. #include <windows.h>
  13. #include <atlbase.h>
  14. #include <atlapp.h>
  15. extern CAppModule _Module;
  16. #include <atlwin.h>
  17. #include <atlframe.h>
  18. #include <atlctrls.h>
  19. #include <atldlgs.h>
  20. #include <atlcrack.h>