-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGUI_GUIPage.h
48 lines (39 loc) · 1.46 KB
/
GUI_GUIPage.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
46
47
48
/*===================================================================*/
/* */
/* GUI_GUIPage.h : GUI Page for GUI Custom Settings */
/* Interface, Variables, and Event Handling */
/* */
/* 2001/12/22 ReGex 0.60 Final Release */
/* */
/*===================================================================*/
#ifndef GUI_GUIPAGE
#define GUI_GUIPAGE
#include <kos.h>
#include "TextWindow.h"
#include "GUI_MainMenu.h"
//Function Definitions
void setup_gui_options_screen();
void Generate_GUI_Options_List();
void Handle_GUI_Interface(cont_state_t* my_state);
void Allocate_GUI_Options();
void Free_GUI_Options();
//External Variables Required
extern Window_Style mystyle;
extern Window_Data mydata;
extern Window_Style helpstyle;
extern Window_Data helpdata;
extern int keyhit;
extern int invalida;
extern int xkeyhit;
extern int menuscreen;
extern const int MAX_CLIP_PIXELS;
extern const int title_offset_y;
extern const int Max_Frameskip;
extern char* Main_Keys[];
extern char* Options_Keys[];
extern const int Num_Options_Keys;
extern const char Tag_Slider[];
extern const char SLIDERBOX_MAX[];
extern const char SLIDERBOX_MIN[];
extern const char SLIDERBOX_VALUE[];
#endif