source: trunk/src/win32k/utils/Win32kCC.h@ 4702

Last change on this file since 4702 was 4702, checked in by bird, 25 years ago

Added support for updating config.sys.

File size: 4.1 KB
Line 
1/* $Id: Win32kCC.h,v 1.4 2000-11-26 13:36:53 bird Exp $
2 *
3 *
4 *
5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11/*******************************************************************************
12* Defined Constants And Macros *
13*******************************************************************************/
14/*
15 * General PushButton ID(s)
16 */
17#define PB_APPLY 0xfffe
18#define PB_REFRESH 0xfffd
19#define PB_UPD_CONFIGSYS 0xfffc
20
21
22/*
23 * String IDs.
24 */
25#define IDS_ERR_DIALOGLOAD 1
26#define IDS_ERR_MALLOC_FAILED 2
27#define IDS_ERR_SET_INSTACEDATA 3
28#define IDS_ERR_WIN32K_NOT_LOADED 4
29#define IDS_ERR_WIN32K_OPEN_FAILED 5
30#define IDS_ERR_QUERYOPTIONSTATUS 6
31#define IDS_ERR_NO_COM_RADIOBUTTON 7
32#define IDS_ERR_NO_PE_RADIOBUTTON 8
33#define IDS_ERR_INVALID_INFOLEVEL 9
34#define IDS_ERR_INVALID_MAXHEAPSIZE 10
35#define IDS_ERR_SETPOPTIONS 11
36#define IDS_ERR_FOPEN_FAILED 12
37#define IDS_FSIZE_FAILED 13
38#define IDS_MALLOC_FAILED 14
39#define IDS_FWRITE_FAILED 15
40
41
42/*
43 * Message IDs.
44 */
45#define IDM_INFO_DIRTY 1
46#define IDM_CONFIGSYS_UPDATED 2
47
48
49/*
50 * The Win32kCC (main) dialog.
51 */
52#define DL_WIN32KCC 1000
53
54#define GR_LOGGING 1010
55#define CB_LOGGING_ENABLED 1011
56#define RB_LOGGING_COM1 1012
57#define RB_LOGGING_COM2 1013
58#define RB_LOGGING_COM3 1014
59#define RB_LOGGING_COM4 1015
60
61
62#define GR_LOADERS 1030
63#define CB_LDR_DISABLE_ALL 1031
64
65#define GR_LDR_PE 1040
66#define RB_LDR_PE_PURE 1041
67#define RB_LDR_PE_MIXED 1042
68#define RB_LDR_PE_PE 1043
69#define RB_LDR_PE_NOT 1044
70#define TX_LDR_PE_INFOLEVEL 1045
71#define SB_LDR_PE_INFOLEVEL 1046
72#define TX_LDR_PE_MODULES 1047
73#define TX_LDR_PE_MODULES_VAL 1048
74
75#define GR_LDR_ELF 1060
76#define CB_LDR_ELF_ENABLED 1061
77#define TX_LDR_ELF_INFOLEVEL 1062
78#define SB_LDR_ELF_INFOLEVEL 1063
79#define TX_LDR_ELF_MODULES 1064
80#define TX_LDR_ELF_MODULES_VAL 1065
81
82#define CB_LDR_SHELL_SCRIPTS 1070
83#define CB_LDR_JAVA 1080
84#define CB_LDR_REXX 1090
85
86
87#define GR_HEAPS 1150
88
89#define GR_HEAP_RES 1160
90#define TX_HEAP_RES_MAX 1161
91#define SB_HEAP_RES_MAX 1162
92#define TX_HEAP_RES_INIT 1163
93#define TX_HEAP_RES_INIT_VAL 1164
94#define TX_HEAP_RES_USED 1165
95#define TX_HEAP_RES_USED_VAL 1166
96#define TX_HEAP_RES_FREE 1167
97#define TX_HEAP_RES_FREE_VAL 1168
98#define TX_HEAP_RES_SIZE 1169
99#define TX_HEAP_RES_SIZE_VAL 1170
100#define TX_HEAP_RES_USED_BLOCKS 1171
101#define TX_HEAP_RES_USED_BLOCKS_VAL 1172
102#define TX_HEAP_RES_FREE_BLOCKS 1173
103#define TX_HEAP_RES_FREE_BLOCKS_VAL 1174
104
105
106#define GR_HEAP_SWP 1180
107#define TX_HEAP_SWP_MAX 1181
108#define SB_HEAP_SWP_MAX 1182
109#define TX_HEAP_SWP_INIT 1183
110#define TX_HEAP_SWP_INIT_VAL 1184
111#define TX_HEAP_SWP_USED 1185
112#define TX_HEAP_SWP_USED_VAL 1186
113#define TX_HEAP_SWP_FREE 1187
114#define TX_HEAP_SWP_FREE_VAL 1188
115#define TX_HEAP_SWP_SIZE 1189
116#define TX_HEAP_SWP_SIZE_VAL 1190
117#define TX_HEAP_SWP_USED_BLOCKS 1191
118#define TX_HEAP_SWP_USED_BLOCKS_VAL 1192
119#define TX_HEAP_SWP_FREE_BLOCKS 1193
120#define TX_HEAP_SWP_FREE_BLOCKS_VAL 1194
121
122#define GR_W32K 1200
123#define TX_W32K_VERSION 1201
124#define TX_W32K_VERSION_VAL 1202
125#define TX_W32K_BUILD_DATETIME 1203
126#define TX_W32K_BUILD_DATETIME_VAL 1204
127#define TX_W32K_SYMBOLFILE 1205
128#define TX_W32K_SYMBOLFILE_VAL 1206
129#define TX_W32K_KERNELBUILD 1207
130#define TX_W32K_KERNELBUILD_VAL 1208
131
132
Note: See TracBrowser for help on using the repository browser.