63 lines
1.6 KiB
C
63 lines
1.6 KiB
C
|
|
// stdafx.h : <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʰ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD>
|
|||
|
|
// ǥ<><C7A5> <20>ý<EFBFBD><C3BD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʈ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
// <20><><EFBFBD><EFBFBD> <20>ִ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#ifndef VC_EXTRALEAN
|
|||
|
|
#define VC_EXTRALEAN // Windows <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʴ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>ܽ<EFBFBD>ŵ<EFBFBD>ϴ<EFBFBD>.
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
#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
|
|||
|
|
|
|||
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // <20>Ϻ<EFBFBD> CString <20><><EFBFBD><EFBFBD><EFBFBD>ڴ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>˴ϴ<CBB4>.
|
|||
|
|
|
|||
|
|
// MFC<46><43> <20><><EFBFBD><EFBFBD> <20>κа<CEBA> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><EFBFBD><DEBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>⸦ <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.
|
|||
|
|
#define _AFX_ALL_WARNINGS
|
|||
|
|
|
|||
|
|
#include <afxwin.h> // MFC <20>ٽ<EFBFBD> <20><> ǥ<><C7A5> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
|
#include <afxext.h> // MFC <20>ͽ<EFBFBD><CDBD>ټ<EFBFBD>
|
|||
|
|
#include <afxdisp.h> // MFC <20>ڵ<EFBFBD>ȭ Ŭ<><C5AC><EFBFBD><EFBFBD>
|
|||
|
|
|
|||
|
|
#include <afxdtctl.h> // Internet Explorer 4 <20><><EFBFBD><EFBFBD> <20><>Ʈ<EFBFBD>ѿ<EFBFBD> <20><><EFBFBD><EFBFBD> MFC <20><><EFBFBD><EFBFBD>
|
|||
|
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
|||
|
|
#include <afxcmn.h> // Windows <20><><EFBFBD><EFBFBD> <20><>Ʈ<EFBFBD>ѿ<EFBFBD> <20><><EFBFBD><EFBFBD> MFC <20><><EFBFBD><EFBFBD>
|
|||
|
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|||
|
|
|
|||
|
|
// stl
|
|||
|
|
#include <vector>
|
|||
|
|
#include <deque>
|
|||
|
|
#include <list>
|
|||
|
|
#include <set>
|
|||
|
|
#include <map>
|
|||
|
|
#include <queue>
|
|||
|
|
#include <deque>
|
|||
|
|
#include <hash_map>
|
|||
|
|
#include <algorithm>
|
|||
|
|
#include <string>
|
|||
|
|
|
|||
|
|
|
|||
|
|
#ifdef _UNICODE
|
|||
|
|
typedef std::wstring tstring;
|
|||
|
|
#else
|
|||
|
|
typedef std::string tstring;
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
|
|||
|
|
#ifndef SAFE_DELETE
|
|||
|
|
#define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } }
|
|||
|
|
#endif
|
|||
|
|
#ifndef SAFE_DELETE_ARRAY
|
|||
|
|
#define SAFE_DELETE_ARRAY(p) { if(p) { delete[] (p); (p)=NULL; } }
|
|||
|
|
#endif
|
|||
|
|
#ifndef SAFE_RELEASE
|
|||
|
|
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }
|
|||
|
|
#endif
|
|||
|
|
|
|||
|
|
|
|||
|
|
#include "tinyxml.h"
|
|||
|
|
#include "StringUtil.h"
|
|||
|
|
|
|||
|
|
std::string GetTimeString(time_t time);
|