1 // stdafx.h: Specifies include files for standard system include files. Also specifies project-specific include files that are referenced often and do not change often.
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: Reference additional headers required by the program here.
30