1 // stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または
2 // 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル
3 // を記述します。
4 //
5 #ifdef _WIN32
6 
7 #pragma once
8 
9 //#include "targetver.h"
10 
11 #include <stdio.h>
12 #include <tchar.h>
13 #include <winsock2.h>
14 #include <windows.h>
15 #include <process.h>
16 #include <cstring>
17 #include "types.h"
18 #include <nn/Result.h>
19 
20 #else
21 
22 #include <nn.h>
23 #include <nn/types.h>
24 #include <nn/Result.h>
25 #include <nn/uds.h>
26 
27 #endif
28 
29 // TODO: プログラムに必要な追加ヘッダーをここで参照してください。
30