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