stdafx.h 427 B

12345678910111213141516171819202122232425
  1. // stdafx.h : 标准系统包含文件的包含文件,
  2. // 或是经常使用但不常更改的
  3. // 特定于项目的包含文件
  4. #pragma once
  5. #ifndef STRICT
  6. #define STRICT
  7. #endif
  8. #include "targetver.h"
  9. #define _ATL_APARTMENT_THREADED
  10. #define _ATL_NO_AUTOMATIC_NAMESPACE
  11. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  12. #include "resource.h"
  13. #include <atlbase.h>
  14. #include <atlcom.h>
  15. #include <atlctl.h>
  16. using namespace ATL;