mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
15 lines
229 B
C
15 lines
229 B
C
#ifndef RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#define RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#include "rvl/types.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __OSInitAudioSystem(void);
|
|
void __OSStopAudioSystem(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|