GameServer
stdafx.h
[詳解]
1 // stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または
2 // 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル
3 // を記述します。
4 //
5 
6 #ifndef __STDAFX_H__
7 #define __STDAFX_H__
8 
9 #define _WIN32_WINNT 0x0501
10 
11 #include <stdio.h>
12 
13 #include <boost/asio.hpp>
14 #include "basic_repeating_timer.h"
15 
16 using namespace boost;
17 using asio::ip::tcp;
18 
19 #include "TypeDefs.h"
20 
21 // TODO: プログラムに必要な追加ヘッダーをここで参照してください
22 
23 #endif // #ifndef __STDAFX_H__
Definition: basic_repeating_timer.h:25