znone
2019-08-27 18b8205f3984bff211131f82e4c0a1e33886ea64
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_