-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathui_context.h
45 lines (35 loc) · 858 Bytes
/
ui_context.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
typedef struct ui_context_
{
char filter[32];
char currentPath[4*256];
disk_in_drive * disk_ptr;
cfgfile * cfgfile_ptr;
unsigned char colormode;
int page_mode_index;
int page_number;
int selectorpos;
int slotselectorpos;
int slotselectorpage;
int config_file_number_max_of_slot;
int number_of_drive;
int slots_position;
int number_of_slots;
unsigned char filtermode;
int cfg_file_format_version;
unsigned char slot_map[512];
unsigned char change_map[512];
char FIRMWAREVERSION[16];
int SCREEN_XRESOL;
int SCREEN_YRESOL;
int NUMBER_OF_ENTRIES_ON_DISPLAY;
int NUMBER_OF_FILE_ON_DISPLAY;
int char_ptr_col;
int char_ptr_line;
void * vid_mem_ptr;
int screen_txt_xsize;
int screen_txt_ysize;
int font_id;
int bootdev;
int firmware_type;
int firmware_main_version;
}ui_context;