123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #pragma once
- // stdafx.h : include file for standard system include files,
- // or project specific include files that are used frequently, but
- // are changed infrequently
- //
- #if !defined(AFX_STDAFX_H__293E641A_6D1B_4F78_AAC3_BF2253E98922__INCLUDED_)
- #define AFX_STDAFX_H__293E641A_6D1B_4F78_AAC3_BF2253E98922__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #ifndef _SECURE_ATL
- #define _SECURE_ATL 1
- #endif
- #ifndef VC_EXTRALEAN
- #define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
- #endif
- // 如果您必须使用下列所指定的平台之前的平台,则修改下面的定义。
- // 有关不同平台的相应值的最新信息,请参考 MSDN。
- #ifndef WINVER // 允许使用特定于 Windows XP 或更高版本的功能。
- #define WINVER 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。
- #endif
- #ifndef _WIN32_WINNT // 允许使用特定于 Windows XP 或更高版本的功能。
- #define _WIN32_WINNT 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。
- #endif
- #ifndef _WIN32_WINDOWS // 允许使用特定于 Windows 98 或更高版本的功能。
- #define _WIN32_WINDOWS 0x0410 // 将它更改为适合 Windows Me 或更高版本的相应值。
- #endif
- #ifndef _WIN32_IE // 允许使用特定于 IE 6.0 或更高版本的功能。
- #define _WIN32_IE 0x0600 // 将此值更改为相应的值,以适用于 IE 的其他版本。值。
- #endif
- #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
- #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
- #pragma warning(disable:4996)
- #define _CRT_SECURE_NO_WARNINGS
- #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料
- #define _WIN32_DCOM
- //#define _CRTDBG_MAP_ALLOC
- #include <stdlib.h>
- #include <crtdbg.h>
- #include <atlstr.h>
- #include <windows.h>
- // TODO: reference additional headers your program requires here
- #include <tchar.h>
- #include <winsock2.h>
- #include "../__INCLUDE/BaseModule.h"
- #include <functional>
- #include <string>
- #include <regex>
- #include <vector>
- #include <locale>
- #include <string_view>
- #include <codecvt>
- #include <cpr/api.h>
- #include <fmt/ostream.h>
- #include <locale>
- #include <codecvt>
- #include<memory>
- #include <algorithm>
- #define ASSERT ATLASSERT
- #define TRACE ATLTRACE
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_STDAFX_H__293E641A_6D1B_4F78_AAC3_BF2253E98922__INCLUDED_)
|