znone
2021-10-05 a77db3e50bb5429b17e8d89bf71403dfdf39985c
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_