From d4753076e89d42cdad4a4f1ca4688fad3c56d873 Mon Sep 17 00:00:00 2001 From: gameblabla Date: Sat, 5 Oct 2019 03:04:57 +0200 Subject: Port the libretro core and make it standalone. TODO : - Input should use our config file instead. - Missing audio in some games. (Star Ocean, doesn't happen with stock retroarch code. Odd...) --- shell/audio/sound_output.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell/audio/sound_output.h (limited to 'shell/audio/sound_output.h') diff --git a/shell/audio/sound_output.h b/shell/audio/sound_output.h new file mode 100644 index 0000000..ba8a318 --- /dev/null +++ b/shell/audio/sound_output.h @@ -0,0 +1,10 @@ +#ifndef SOUND_OUTPUT_H +#define SOUND_OUTPUT_H + +#include "shared.h" + +extern uint32_t Audio_Init(); +extern void Audio_Write(int16_t* restrict buffer, uint32_t buffer_size); +extern void Audio_Close(); + +#endif -- cgit v1.2.3