Files
sphinxbase/include/sphinxbase_export.h
T
dhdfu 4c1a132748 Add some things to the ngram_model API that are needed by
PocketSphinx, and enable it in libsphinxbase.


git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxbase@7623 94700074-3cef-4d97-a70e-9c8c206c02f5
2008-01-24 06:52:57 +00:00

16 lines
383 B
C

#ifndef __SPHINXBASE_EXPORT_H__
#define __SPHINXBASE_EXPORT_H__
/* Win32/WinCE DLL gunk */
#if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(CYGWIN)
#ifdef SPHINXBASE_EXPORTS
#define SPHINXBASE_EXPORT __declspec(dllexport)
#else
#define SPHINXBASE_EXPORT __declspec(dllimport)
#endif
#else /* !_WIN32 */
#define SPHINXBASE_EXPORT
#endif
#endif /* __SPHINXBASE_EXPORT_H__ */