59 lines
1.4 KiB
C
59 lines
1.4 KiB
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 0x0410
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
#ifndef _WIN32_IE
|
|||
|
|
#define _WIN32_IE 0x0400
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
#define _ATL_ATTRIBUTES
|
|||
|
|
#define _AFX_ALL_WARNINGS
|
|||
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
|
|||
|
|
|
|||
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|
|||
|
|
//MFC <20>ļ<EFBFBD>
|
|||
|
|
#include <AfxWin.h>
|
|||
|
|
#include <AfxExt.h>
|
|||
|
|
#include <AfxCmn.h>
|
|||
|
|
#include <AfxDisp.h>
|
|||
|
|
|
|||
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
//<2F><><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD>
|
|||
|
|
|
|||
|
|
#ifndef _DEBUG
|
|||
|
|
#ifndef _UNICODE
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Ansi/ServiceCore.lib")
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Ansi/KernelEngine.lib")
|
|||
|
|
#else
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Unicode/ServiceCore.lib")
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Unicode/KernelEngine.lib")
|
|||
|
|
#endif
|
|||
|
|
#else
|
|||
|
|
#ifndef _UNICODE
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Ansi/ServiceCoreD.lib")
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Ansi/KernelEngineD.lib")
|
|||
|
|
#else
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Unicode/ServiceCoreD.lib")
|
|||
|
|
#pragma comment (lib,"../../<EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>/Unicode/KernelEngineD.lib")
|
|||
|
|
#endif
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
//////////////////////////////////////////////////////////////////////////////////
|