-
Notifications
You must be signed in to change notification settings - Fork 0
/
Options Screen.h
33 lines (18 loc) · 914 Bytes
/
Options Screen.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
#ifndef _OPTIONS_SCREEN__H_
#define _OPTIONS_SCREEN__H_
#include "MessageBoxScreen.h"
#define OPT_BUTTON_FONT FONT14ARIAL
#define OPT_BUTTON_FONT2 FONT10ARIAL //smaller button on options screen
#define OPT_BUTTON_ON_COLOR 73//FONT_MCOLOR_WHITE
#define OPT_BUTTON_OFF_COLOR 73//FONT_MCOLOR_WHITE
//Record the previous screen the user was in.
extern UINT32 guiPreviousOptionScreen;
UINT32 OptionsScreenShutdown( void );
UINT32 OptionsScreenHandle( void );
UINT32 OptionsScreenInit( void );
void SetOptionsScreenToggleBoxes();
void GetOptionsScreenToggleBoxes();
// OJW - moved this here so can exit options screen on client disconnect
void SetOptionsExitScreen( UINT32 uiExitScreen );
BOOLEAN DoOptionsMessageBox( UINT8 ubStyle, STR16 zString, UINT32 uiExitScreen, UINT16 usFlags, MSGBOX_CALLBACK ReturnCallback );
#endif