Files
Luke Street 1b0b96665a Migrate to dtk-template
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
2024-10-28 19:18:21 -06:00

29 lines
543 B
C

#ifndef AUDIOTHREAD_H
#define AUDIOTHREAD_H
#include "types.h"
#include "jaudio_NES/audiostruct.h"
#include "dolphin/os.h"
#define AUDIO_THREAD_FLAG_DVD (1 << 0)
#define AUDIO_THREAD_FLAG_AUDIO (1 << 1)
#define AUDIO_THREAD_FLAG_NEOS (1 << 2)
extern volatile int intcount;
extern void NeosSync(void);
#ifdef __cplusplus
extern "C" {
#endif
extern void DspSyncCountClear(int count);
extern int DspSyncCountCheck(void);
extern void StartAudioThread(void* pHeap, s32 heapSize, u32 aramSize, u32 flags);
#ifdef __cplusplus
}
#endif
#endif