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 GRAYCODEC_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 GRAYSQLITE_LINK
20 #else
21 #define GRAYSQLITE_LINK __DECL_EXPORT
22 #endif
23 #endif
24 
25 #endif