mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
16 lines
248 B
C
16 lines
248 B
C
#ifndef __DIRTY_INPUT_H___
|
|
#define __DIRTY_INPUT_H___
|
|
|
|
#include "retro_common_api.h"
|
|
#include "boolean.h"
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
extern bool input_is_dirty;
|
|
void add_input_state_hook(void);
|
|
void remove_input_state_hook(void);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|