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 
15 
16 #ifdef _MFC_VER
17 // Windows/GUI with MFC
18 #include <afxwin.h> // MFC windows.
19 //#include <afxext.h> // MFC extensions
20 #include <afxdisp.h> // MFC OLE automation classes
21 #ifndef _AFX_NO_AFXCMN_SUPPORT
22 #include <afxcmn.h> // MFC support for Windows Common Controls
23 #endif // _AFX_NO_AFXCMN_SUPPORT
24 #endif // _MFC_VER
25 
26 #ifndef GRAYLIB_LINK
27 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
28 #define GRAYLIB_LINK // not in a DLL
29 #else
30 #define GRAYLIB_LINK __DECL_EXPORT
31 #endif
32 #endif
33 
34 //{{AFX_INSERT_LOCATION}}
35 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
36 
37 #endif // !defined(_INC_pch_H)