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#include "sound_bakery/sound_bakery_version.h"
12
13#define SB_API SC_API
14#define SB_CLASS SC_CLASS
15
16typedef sc_result sb_result;
17
19
20typedef unsigned long long sbk_id;
21#define SB_INVALID_ID 0
22
24{
25 sc_system_config soundChefConfig;
26};
27
28#endif
A wrapper library for miniaudio that emulates functionality of FMOD.
Definition sound_bakery_common.h:24
Configuration for initializing the sc_system.
Definition sound_chef_common.h:255