1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 01:59:43 +01:00
VVVVVV/desktop_version/libretro/SDL_libretro.h

23 lines
506 B
C
Raw Normal View History

2024-10-12 15:23:35 +02:00
#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