Move typedef struct definition to menu_entries.c

This commit is contained in:
twinaphex 2015-12-11 21:18:13 +01:00
parent f5422de0d6
commit 4c8c2ea30d
2 changed files with 2 additions and 2 deletions

View File

@ -44,6 +44,8 @@ struct menu_entries
rarch_setting_t *list_settings;
};
typedef struct menu_entries menu_entries_t;
static menu_entries_t *menu_entries_data;
static void menu_list_free_list(file_list_t *list)

View File

@ -103,8 +103,6 @@ typedef struct menu_file_list_cbs
typedef struct menu_list menu_list_t;
typedef struct menu_entries menu_entries_t;
void menu_entries_set_start(size_t i);
size_t menu_entries_get_start(void);