mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Add capabilities to ui_browser_window_state
This commit is contained in:
parent
5a746e04c2
commit
008e622843
1 changed files with 11 additions and 0 deletions
|
@ -65,6 +65,17 @@ typedef struct ui_msg_window_state
|
|||
|
||||
typedef struct ui_browser_window_state
|
||||
{
|
||||
struct
|
||||
{
|
||||
bool can_choose_directories;
|
||||
bool can_choose_directories_val;
|
||||
bool can_choose_files;
|
||||
bool can_choose_files_val;
|
||||
bool allows_multiple_selection;
|
||||
bool allows_multiple_selection_val;
|
||||
bool treat_file_packages_as_directories;
|
||||
bool treat_file_packages_as_directories_val;
|
||||
} capabilities;
|
||||
void *window;
|
||||
char *filters;
|
||||
char *filters_title;
|
||||
|
|
Loading…
Add table
Reference in a new issue