mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-02 05:16:33 +00:00
18 lines
342 B
C
18 lines
342 B
C
#ifndef __DIRTY_INPUT_H___
|
|
#define __DIRTY_INPUT_H___
|
|
|
|
#include <boolean.h>
|
|
#include <retro_common_api.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
extern bool input_is_dirty;
|
|
void add_input_state_hook(void);
|
|
void remove_input_state_hook(void);
|
|
int16_t input_state_get_last(unsigned port,
|
|
unsigned device, unsigned index, unsigned id);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|