From e32e2692648bdb9b816ef56572e55c6385057da4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 1 Sep 2014 05:38:05 +0200 Subject: [PATCH] (Menu) Move poll prototype functions to menu_input_line_cb.h --- frontend/menu/menu_common.h | 5 ----- frontend/menu/menu_input_line_cb.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/menu/menu_common.h b/frontend/menu/menu_common.h index 8a2b22eadb..23510897d6 100644 --- a/frontend/menu/menu_common.h +++ b/frontend/menu/menu_common.h @@ -169,11 +169,6 @@ typedef enum MENU_SETTINGS_PERF_COUNTERS_END = MENU_SETTINGS_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1) } menu_settings_t; -void menu_poll_bind_get_rested_axes(struct menu_bind_state *state); -void menu_poll_bind_state(struct menu_bind_state *state); -bool menu_poll_find_trigger(struct menu_bind_state *state, struct menu_bind_state *new_state); -bool menu_custom_bind_keyboard_cb(void *data, unsigned code); - void *menu_init(const void *data); bool menu_iterate(void); void menu_free(void *data); diff --git a/frontend/menu/menu_input_line_cb.h b/frontend/menu/menu_input_line_cb.h index cbf980115f..7d6ab84a1e 100644 --- a/frontend/menu/menu_input_line_cb.h +++ b/frontend/menu/menu_input_line_cb.h @@ -30,4 +30,9 @@ void st_string_callback(void *userdata, const char *str); void preset_filename_callback(void *userdata, const char *str); +void menu_poll_bind_get_rested_axes(struct menu_bind_state *state); +void menu_poll_bind_state(struct menu_bind_state *state); +bool menu_poll_find_trigger(struct menu_bind_state *state, struct menu_bind_state *new_state); +bool menu_custom_bind_keyboard_cb(void *data, unsigned code); + #endif