mirror of
https://github.com/youssefnoob003/SindriKit
synced 2026-07-07 21:57:09 +00:00
16 lines
367 B
C
16 lines
367 B
C
#ifndef SND_PRIMITIVES_MODULES_H
|
|
#define SND_PRIMITIVES_MODULES_H
|
|
|
|
#include <sindri/common/helpers.h>
|
|
#include <sindri/primitives/os_api.h>
|
|
|
|
SND_BEGIN_EXTERN_C
|
|
|
|
// Expose globally available, ready-to-use WinAPI capabilities
|
|
extern const snd_module_api_t snd_mod_win;
|
|
extern const snd_module_api_t snd_mod_native;
|
|
|
|
SND_END_EXTERN_C
|
|
|
|
#endif // SND_PRIMITIVES_MODULES_H
|