Files
wnmj/Servers/服务器组件/内核引擎/Stdafx.h
2026-02-13 14:34:15 +08:00

53 lines
1004 B
C

#pragma once
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN
#endif
#ifndef WINVER
#define WINVER 0x0501
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
#ifndef _WIN32_WINDOWS
#define _WIN32_WINDOWS 0x0501
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x0501
#endif
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
#define _AFX_ALL_WARNINGS
#include <AfxWin.h>
#include <AfxExt.h>
#include <AfxDisp.h>
#include <AfxDtctl.h>
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <AfxCmn.h>
#endif
//////////////////////////////////////////////////////////////////////////////////
//Á´½Ó´úÂë
#ifndef _DEBUG
#ifndef _UNICODE
#pragma comment (lib,"../../Á´½Ó¿â/Ansi/ServiceCore.lib")
#else
#pragma comment (lib,"../../Á´½Ó¿â/Unicode/ServiceCore.lib")
#endif
#else
#ifndef _UNICODE
#pragma comment (lib,"../../Á´½Ó¿â/Ansi/ServiceCoreD.lib")
#else
#pragma comment (lib,"../../Á´½Ó¿â/Unicode/ServiceCoreD.lib")
#endif
#endif
//////////////////////////////////////////////////////////////////////////////////