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 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
15 
16 #ifndef GRAYCODEC_LINK
17 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
18 #define GRAYCODEC_LINK
19 #else
20 #define GRAYCODEC_LINK __DECL_EXPORT
21 #endif
22 #endif
23 
24 //{{AFX_INSERT_LOCATION}}
25 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
26 
27 #endif // _INC_pch_H