Turn some functions static

This commit is contained in:
twinaphex 2016-02-04 15:44:25 +01:00
parent 94d10f9d4b
commit cb2a7b59f3
2 changed files with 2 additions and 5 deletions

View File

@ -60,7 +60,7 @@ char *core_buf;
size_t core_len;
/* defined in menu_cbs_deferred_push */
void cb_net_generic(void *task_data, void *user_data, const char *err)
static void cb_net_generic(void *task_data, void *user_data, const char *err)
{
bool refresh = false;
http_transfer_data_t *data = (http_transfer_data_t*)task_data;
@ -99,7 +99,7 @@ finish:
}
#endif
int generic_action_ok_displaylist_push(const char *path,
static int generic_action_ok_displaylist_push(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
unsigned action_type)
{

View File

@ -115,9 +115,6 @@ int action_right_input_desc(unsigned type, const char *label,
int action_right_cheat(unsigned type, const char *label,
bool wraparound);
int generic_action_ok_displaylist_push(const char *path,
const char *label, unsigned type, size_t idx, size_t entry_idx,
unsigned action_type);
/* End of function callbacks */
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,