mirror of
https://github.com/cmusphinx/sphinxtrain.git
synced 2026-06-16 13:14:30 +00:00
Note that most of it is not at all useful. We also had to use an older version than what's in PocketSphinx because SphinxTrain has different needs. Another reorganization will be done soon.
16 lines
383 B
C
16 lines
383 B
C
#ifndef __SPHINXBASE_EXPORT_H__
|
|
#define __SPHINXBASE_EXPORT_H__
|
|
|
|
/* Win32 DLL gunk */
|
|
#if defined(_WIN32) && defined(SPHINX_DLL)
|
|
#if defined(SPHINXBASE_EXPORTS) /* DLL itself */
|
|
#define SPHINXBASE_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define SPHINXBASE_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#else /* No DLL things*/
|
|
#define SPHINXBASE_EXPORT
|
|
#endif
|
|
|
|
#endif /* __SPHINXBASE_EXPORT_H__ */
|