File: pocketsphinx_export.h

package info (click to toggle)
pocketsphinx 0.8%2B5prealpha%2B1-15
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 44,124 kB
  • sloc: ansic: 22,159; sh: 11,483; python: 657; makefile: 381; perl: 301
file content (15 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __POCKETSPHINX_EXPORT_H__
#define __POCKETSPHINX_EXPORT_H__

/* Win32 DLL gunk */
#if defined(_WIN32) && defined(SPHINX_DLL)
#if defined(POCKETSPHINX_EXPORTS) /* DLL itself */
#define POCKETSPHINX_EXPORT __declspec(dllexport)
#else
#define POCKETSPHINX_EXPORT __declspec(dllimport)
#endif
#else /* No DLL things*/
#define POCKETSPHINX_EXPORT
#endif

#endif /* __POCKETSPHINX_EXPORT_H__ */