1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 10:09:43 +01:00
VVVVVV/desktop_version/libretro/SDL_libretro.h
2024-10-12 21:40:56 +08:00

22 lines
506 B
C

#ifndef SDL_LIBRETO_H
#define SDL_LIBRETO_H
#include "SDL.h"
#include "libretro.h"
#ifdef __cplusplus
extern "C" {
#endif
void SDL_libretro_RefreshVideo(retro_video_refresh_t video_cb);
void SDL_libretro_ProduceAudio(retro_audio_sample_batch_t audio_batch_t);
void SDL_libretro_KeyboardCallback(bool down, unsigned keycode,
uint32_t character, uint16_t key_modifiers);
int SDL_SendKeyboardKey(Uint8 state, SDL_Scancode scancode);
#ifdef __cplusplus
}
#endif
#endif