mirror of
https://github.com/libretro/oberon-risc-emu.git
synced 2024-12-04 23:16:43 +00:00
12 lines
212 B
C
12 lines
212 B
C
#ifndef SDL_PS2_H
|
|
#define SDL_PS2_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define MAX_PS2_CODE_LEN 8
|
|
|
|
int ps2_encode(int sdl_scancode, bool make, uint8_t out[static MAX_PS2_CODE_LEN]);
|
|
|
|
#endif // SDL_PS2_H
|