parent
32bbf71bbb
commit
80efc1339e
|
@ -21,6 +21,7 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
#include <retro_miscellaneous.h>
|
#include <retro_miscellaneous.h>
|
||||||
|
#include "menu_input.h"
|
||||||
#include "menu_animation.h"
|
#include "menu_animation.h"
|
||||||
#include "menu_display.h"
|
#include "menu_display.h"
|
||||||
#include "menu_displaylist.h"
|
#include "menu_displaylist.h"
|
||||||
|
@ -109,7 +110,7 @@ typedef struct
|
||||||
char default_cgp[PATH_MAX_LENGTH];
|
char default_cgp[PATH_MAX_LENGTH];
|
||||||
struct video_shader *shader;
|
struct video_shader *shader;
|
||||||
|
|
||||||
void *input;
|
menu_input_t *input;
|
||||||
|
|
||||||
content_playlist_t *playlist;
|
content_playlist_t *playlist;
|
||||||
char db_playlist_file[PATH_MAX_LENGTH];
|
char db_playlist_file[PATH_MAX_LENGTH];
|
||||||
|
|
|
@ -93,6 +93,8 @@ enum menu_input_bind_mode
|
||||||
MENU_INPUT_BIND_ALL
|
MENU_INPUT_BIND_ALL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct menu_input menu_input_t;
|
||||||
|
|
||||||
void menu_input_key_event(bool down, unsigned keycode, uint32_t character,
|
void menu_input_key_event(bool down, unsigned keycode, uint32_t character,
|
||||||
uint16_t key_modifiers);
|
uint16_t key_modifiers);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue