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 
8 #ifndef _INC_pch_H
9 #define _INC_pch_H
10 #ifndef NO_PRAGMA_ONCE
11 #pragma once
12 #endif
13 
14 #pragma unmanaged
15 #define _WIN32_WINNT 0x0500 // Support Windows 2000 or higher.
16 
19 
20 #ifndef GRAYDOTNET_LINK
21 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
22 #define GRAYDOTNET_LINK
23 #else
24 #define GRAYDOTNET_LINK __DECL_EXPORT
25 #endif
26 #endif
27 
28 #pragma managed
29 
30 #using <mscorlib.dll>
31 #using <System.dll>
32 
33 #endif