/usr/include/sphinxbase/sphinxbase_export.h is in libsphinxbase-dev 0.4.1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef __SPHINXBASE_EXPORT_H__
#define __SPHINXBASE_EXPORT_H__
/* Win32/WinCE DLL gunk */
#if (defined(_WIN32) || defined(_WIN32_WCE))
#if defined(SPHINXBASE_EXPORTS) /* Visual Studio */
#define SPHINXBASE_EXPORT __declspec(dllexport)
#elif defined(__CYGWIN__) /* Disable this on Cygwin, it doesn't work */
#define SPHINXBASE_EXPORT
#else
#define SPHINXBASE_EXPORT __declspec(dllimport)
#endif
#else /* !_WIN32 */
#define SPHINXBASE_EXPORT
#endif
#endif /* __SPHINXBASE_EXPORT_H__ */
|