mirror of
https://github.com/libretro/RetroArch
synced 2025-01-16 16:29:28 +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
|