Add previous prototypes to settings_data.h to avoid warnings in OSX

This commit is contained in:
twinaphex 2015-01-09 02:16:42 +01:00
parent 9f764b1241
commit 953120e5ab

View File

@ -97,6 +97,21 @@ rarch_setting_t setting_data_string_setting_options(enum setting_type type,
int setting_data_get_description(const char *label, char *msg,
size_t msg_sizeof);
int core_list_action_toggle(void *data, unsigned action);
int load_content_action_toggle(void *data, unsigned action);
void core_list_change_handler(void *data);
/**
* load_content_change_handler:
* @data : pointer to setting
*
* Function callback for 'Load Content' action's 'Change Handler'
* function pointer.
**/
void load_content_change_handler(void *data);
#ifdef HAVE_MENU
void setting_data_get_label(char *type_str,
size_t type_str_size, unsigned *w, unsigned type,