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
16 lines
383 B
C
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__ */
|