Sound Bakery  v0.1.0
Open-source audio middleware for games
Loading...
Searching...
No Matches
sound_bakery_common.h
1#ifndef SOUND_BAKERY_COMMON_H
2#define SOUND_BAKERY_COMMON_H
3
4#ifdef sound_bakery_shared_EXPORTS
5 #define SB_DLL
6 #define SC_DLL
7 #define MA_DLL
8#endif
9
11
12#define SB_API SC_API
13#define SB_CLASS SC_CLASS
14
15typedef sc_result sb_result;
16
17typedef unsigned long long sbk_id;
18#define SB_INVALID_ID 0
19
20#define SBK_VERSION_MAJOR 0
21#define SBK_VERSION_MINOR 2
22#define SBK_VERSION_PATCH 0
23#define SBK_VERSION_STRING MA_XSTRINGIFY(SBK_VERSION_MAJOR) "." MA_XSTRINGIFY(SBK_VERSION_MINOR) "." MA_XSTRINGIFY(SBK_VERSION_PATCH)
24
25#define SBK_PRODUCT_NAME "Sound Bakery"
26
27#endif
A wrapper library for miniaudio that emulates functionality of FMOD.