spAudio
Loading...
Searching...
No Matches
spAudioDefs.h
Go to the documentation of this file.
1
3#ifndef __SPAUDIODEFS_H
4#define __SPAUDIODEFS_H
5
6#include <sp/spDefs.h>
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#define SP_AUDIO_VERSION_STRING "0.7.16"
13#define SP_AUDIO_VERSION 0
14#define SP_AUDIO_REVISION 7
15#define SP_AUDIO_UPDATE_LEVEL 16
16#define SP_AUDIO_VERSION_ID (SP_AUDIO_VERSION * 1000 + SP_AUDIO_REVISION)
17
18#define SP_AUDIO_CHECK_VERSION(version, revision, update) \
19 (SP_AUDIO_VERSION > (version) || \
20 (SP_AUDIO_VERSION == (version) && SP_AUDIO_REVISION > (revision)) || \
21 (SP_AUDIO_VERSION == (version) && SP_AUDIO_REVISION == (revision) && SP_AUDIO_UPDATE_LEVEL >= (update)))
22
23#undef SP_AUDIO_SUPPORT_PLUGIN
24
25#ifdef __cplusplus
26} /* Close scope of 'extern "C"' declaration */
27#endif
28
29#endif /* __SPAUDIODEFS_H */