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