mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
23 lines
506 B
C
23 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
|