znone
2017-03-23 9ed5ee9526d36df8d5b96fd461c08c7c56e1dc04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _STDAFX_H_
#define _STDAFX_H_
 
#include <stdio.h>
#include <cpptest.h>
 
#ifdef _WIN32
 
#ifndef NOMINMAX
#define NOMINMAX 1
#endif //NOMINMAX
 
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
 
#include <WinSock2.h>
#include <windows.h>
 
#endif
 
#endif //_STDAFX_H_