Turn some functions static
This commit is contained in:
parent
94d10f9d4b
commit
cb2a7b59f3
|
@ -60,7 +60,7 @@ char *core_buf;
|
||||||
size_t core_len;
|
size_t core_len;
|
||||||
|
|
||||||
/* defined in menu_cbs_deferred_push */
|
/* 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;
|
bool refresh = false;
|
||||||
http_transfer_data_t *data = (http_transfer_data_t*)task_data;
|
http_transfer_data_t *data = (http_transfer_data_t*)task_data;
|
||||||
|
@ -99,7 +99,7 @@ finish:
|
||||||
}
|
}
|
||||||
#endif
|
#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,
|
const char *label, unsigned type, size_t idx, size_t entry_idx,
|
||||||
unsigned action_type)
|
unsigned action_type)
|
||||||
{
|
{
|
||||||
|
|
|
@ -115,9 +115,6 @@ int action_right_input_desc(unsigned type, const char *label,
|
||||||
int action_right_cheat(unsigned type, const char *label,
|
int action_right_cheat(unsigned type, const char *label,
|
||||||
bool wraparound);
|
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 */
|
/* End of function callbacks */
|
||||||
|
|
||||||
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
|
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
|
||||||
|
|
Loading…
Reference in New Issue