mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
14 lines
205 B
C
14 lines
205 B
C
|
#include "../general.h"
|
||
|
#include "rarch_sdl_input.h"
|
||
|
|
||
|
#ifndef _LINUXRAW_INPUT_H
|
||
|
#define _LINUXRAW_INPUT_H
|
||
|
|
||
|
typedef struct linuxraw_input
|
||
|
{
|
||
|
sdl_input_t *sdl;
|
||
|
bool state[0x80];
|
||
|
} linuxraw_input_t;
|
||
|
|
||
|
#endif
|