mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
15 lines
225 B
C
15 lines
225 B
C
#ifndef RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#define RVL_SDK_OS_AUDIOSYSTEM_H
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __OSInitAudioSystem(void);
|
|
void __OSStopAudioSystem(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|