Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
pch.h
Go to the documentation of this file.
1 //
6 //
7 #ifndef _INC_pch_H
8 #define _INC_pch_H
9 #ifndef NO_PRAGMA_ONCE
10 #pragma once
11 #endif
12 
13 #pragma warning( disable : 4201 ) // Turn off this useless warning.
14 #pragma warning( disable : 4514 ) // Turn off this useless warning.
15 #pragma warning( disable : 4710 ) // Turn off this useless warning.
16 
17 #ifdef _WIN32
18 // NOTE: If we want a max number of sockets we must compile for it !
19 #endif
20 
22 
23 #ifndef UNDER_CE
24 #include <errno.h>
25 #endif
26 #ifndef ASSERT
27 #define ASSERT assert
28 #endif
29 
30 //{{AFX_INSERT_LOCATION}}
31 // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
32 
33 #endif // !defined(_INC_pch_H)