Initial import to Tizen
[profile/ivi/sphinxbase.git] / include / sphinxbase / 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(__SYMBIAN32__)
6 #if defined(SPHINXBASE_EXPORTS) /* Visual Studio */
7 #define SPHINXBASE_EXPORT __declspec(dllexport)
8 #elif defined(__CYGWIN__) /* Disable this on Cygwin, it doesn't work */
9 #define SPHINXBASE_EXPORT
10 #else
11 #define SPHINXBASE_EXPORT __declspec(dllimport)
12 #endif
13 #else /* !_WIN32 */
14 #define SPHINXBASE_EXPORT
15 #endif
16
17 #endif /* __SPHINXBASE_EXPORT_H__ */