fixed the alternate device mode.
[open-ps2-loader.git] / include / dialogs.h
blobef31a8660f01aecc39c94d0dc60e0fc914d53979
1 #ifndef __DIALOGS_H
2 #define __DIALOGS_H
4 #include "include/dia.h"
6 #define COMPAT_MODE_COUNT 8
8 #define COMPAT_MODE_BASE 200
9 #define COMPAT_GAME 101
10 #define COMPAT_GAMEID 102
11 #define COMPAT_SAVE 103
12 #define COMPAT_TEST 104
13 #define COMPAT_REMOVE 105
14 #define COMPAT_NOEXIT 0x70000000
15 #define COMPAT_LOADFROMDISC (106 | COMPAT_NOEXIT)
16 #ifdef VMC
17 #define COMPAT_VMC1_ACTION (107 | COMPAT_NOEXIT)
18 #define COMPAT_VMC2_ACTION (108 | COMPAT_NOEXIT)
19 #define COMPAT_VMC1_DEFINE (109 | COMPAT_NOEXIT)
20 #define COMPAT_VMC2_DEFINE (110 | COMPAT_NOEXIT)
22 #define VMC_NAME 111
23 #define VMC_SIZE 112
24 #define VMC_BUTTON_CREATE 113
25 #define VMC_BUTTON_DELETE 114
26 #define VMC_STATUS 115
27 #define VMC_PROGRESS 116
28 #define VMC_REFRESH 117
29 #endif
31 #define UICFG_THEME 10
32 #define UICFG_LANG 11
33 #define UICFG_SCROLL 12
34 #define UICFG_BGCOL 13
35 #define UICFG_UICOL 14
36 #define UICFG_TXTCOL 15
37 #define UICFG_SELCOL 16
38 #define UICFG_AUTOSORT 17
39 #define UICFG_COVERART 18
40 #define UICFG_WIDESCREEN 19
41 #define UICFG_AUTOREFRESH 20
42 #define UICFG_VMODE 21
43 #define UICFG_VSYNC 22
44 #define UICFG_INFOPAGE 23
46 #define CFG_EXITTO 30
47 #define CFG_DEFDEVICE 31
48 #define CFG_DEBUG 32
49 #define CFG_USBMODE 33
50 #define CFG_HDDMODE 34
51 #define CFG_ETHMODE 35
52 #define CFG_APPMODE 36
53 #define CFG_CHECKUSBFRAG 37
54 #define CFG_LASTPLAYED 38
55 #define CFG_DANDROP 39
56 #define CFG_USBDELAY 40
57 #define CFG_USBPREFIX 41
58 #define CFG_HDDSPINDOWN 42
60 extern struct UIItem diaIPConfig[];
61 extern struct UIItem diaCompatConfig[];
62 extern struct UIItem diaUIConfig[];
63 extern struct UIItem diaConfig[];
64 extern struct UIItem diaAbout[];
65 #ifdef VMC
66 extern struct UIItem diaVMC[];
67 #endif
69 #endif