00001 #ifndef __SPHINXBASE_EXPORT_H__ 00002 #define __SPHINXBASE_EXPORT_H__ 00003 00004 /* Win32/WinCE DLL gunk */ 00005 #if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(__SYMBIAN32__) 00006 #if defined(SPHINXBASE_EXPORTS) /* Visual Studio */ 00007 #define SPHINXBASE_EXPORT __declspec(dllexport) 00008 #elif defined(__CYGWIN__) /* Disable this on Cygwin, it doesn't work */ 00009 #define SPHINXBASE_EXPORT 00010 #else 00011 #define SPHINXBASE_EXPORT __declspec(dllimport) 00012 #endif 00013 #else /* !_WIN32 */ 00014 #define SPHINXBASE_EXPORT 00015 #endif 00016 00017 #endif /* __SPHINXBASE_EXPORT_H__ */