37 lines
766 B
C++
37 lines
766 B
C++
// stdafx.h : 자주 사용하지만 자주 변경되지는 않는
|
|
// 표준 시스템 포함 파일 및 프로젝트 관련 포함 파일이
|
|
// 들어 있는 포함 파일입니다.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <iostream>
|
|
#include <tchar.h>
|
|
|
|
// TODO: 프로그램에 필요한 추가 헤더는 여기에서 참조합니다.
|
|
|
|
#include "WinSock2.h"
|
|
#include <conio.h>
|
|
#include "Constant.h"
|
|
#include "PublicDefine.h"
|
|
#include "PacketStruct.h"
|
|
#include <BasicLog.h>
|
|
#include <Version.h>
|
|
|
|
//Log
|
|
extern CBasicLog* g_pLog;
|
|
VOID MessageOut( TCHAR* pszMsg... );
|
|
#define MSGOUT MessageOut
|
|
|
|
#ifdef _DEBUG
|
|
#pragma comment( lib, "Network_d.lib" )
|
|
#pragma comment( lib, "UpdateCommon_d.lib" )
|
|
#else
|
|
#pragma comment( lib, "Network.lib" )
|
|
#pragma comment( lib, "UpdateCommon.lib" )
|
|
#endif
|
|
|
|
|
|
TCHAR* GetUpdateServerType( eUPDATE_SERVER_TYPE type );
|