// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. #endif #pragma warning( disable:4996 ) #define _CRT_RAND_S #include #include "../../Common/DNLocaleHeader.h" #include "../../Common/DNDefine.h" #include "DNHeader.h" #include "DNPacket.h" #include "DNProtocol.h" #include "assertx.h" // ¹ö±×¸®Æ÷ÆÃ¿¡ ÇÊ¿äÇÑ libµé #pragma comment (lib, "shell32.lib") #pragma comment (lib, "ole32.lib") #pragma comment (lib, "oleaut32.lib") #if defined(_CH) #include "FCMsdkBase.h" #if defined(WIN64) #pragma comment(lib,"../ServerCommon/CH/fcmsdk_X64.lib") // ÇǷεµ #else // #if defined(WIN64) #pragma comment(lib,"../ServerCommon/CH/fcmsdk.lib") // ÇǷεµ #endif // #if defined(WIN64) #elif defined(_JP) #ifdef WIN64 #include "../ServerCommon/JP/HanNetCafeForSvr.h" #pragma comment(lib, "../ServerCommon/JP/HanNetCafeForSvr_x64.lib") //NHN NetCafe #endif #elif defined(_US) #include "../ServerCommon/US/IPIObject.h" #pragma comment(lib, "../ServerCommon/US/PI64/ImmigratorSDK.lib") #endif // _CH // googletest #include "gtest/gtest.h" #include "gmock/gmock.h"