mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
15 lines
226 B
C
15 lines
226 B
C
#ifndef RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#define RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __OSInitAudioSystem(void);
|
|
void __OSStopAudioSystem(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|