SphinxBase  0.6
sphinxbase_export.h
1 #ifndef __SPHINXBASE_EXPORT_H__
2 #define __SPHINXBASE_EXPORT_H__
3 
4 /* Win32/WinCE DLL gunk */
5 #if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__WINSCW__) && !defined(__SYMBIAN32__)
6 #if defined(SPHINXBASE_EXPORTS) /* Visual Studio */
7 #define SPHINXBASE_EXPORT __declspec(dllexport)
8 #else
9 #define SPHINXBASE_EXPORT __declspec(dllimport)
10 #endif
11 #else /* !_WIN32 */
12 #define SPHINXBASE_EXPORT
13 #endif
14 
15 #endif /* __SPHINXBASE_EXPORT_H__ */