-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGUI_SystemPage.h
51 lines (41 loc) · 1.51 KB
/
GUI_SystemPage.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
49
50
51
/*===================================================================*/
/* */
/* GUI_SystemPage.h : GUI Page for System Settings */
/* Interface, Variables, and Event Handling */
/* */
/* 2001/12/22 ReGex 0.60 Final Release */
/* */
/*===================================================================*/
#ifndef GUI_SYSTEMPAGE
#define GUI_SYSTEMPAGE
#include <kos.h>
#include "TextWindow.h"
#include "GUI_MainMenu.h"
//Function Definitions
void setup_system_options_screen();
void Generate_System_Options_List();
void Handle_System_Interface(cont_state_t* my_state);
//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 maple_device_t* VMUs[];
//Options Variables
extern uint16 opt_SoundEnabled;
extern uint16 opt_FrameSkip;
extern uint16 opt_AutoFrameSkip;
extern uint16 opt_ShowFrameRate;
extern int16 opt_VMUPort;
extern uint16 opt_SRAM;
#endif