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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (c) 2005 Alexander Gottwald
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Except as contained in this notice, the name(s) of the above copyright
* holders shall not be used in advertising or otherwise to promote the sale,
* use or other dealings in this Software without prior written authorization.
*/
#define IDC_STATIC -1
#define IDD_WELCOME 100
#define IDD_FINISH 101
#define IDD_DISPLAY 102
#define IDD_CLIENTS 103
#define IDD_PROGRAM 104
#define IDD_XDMCP 105
#define IDD_FONTPATH 106
#define IDD_EXTRA 107
#define IDI_XLAUNCH 108
#define IDC_MULTIWINDOW 200
#define IDC_WINDOWED 201
#define IDC_FULLSCREEN 202
#define IDC_NODECORATION 203
#define IDC_MULTIWINDOW_IMG 204
#define IDC_WINDOWED_IMG 205
#define IDC_FULLSCREEN_IMG 206
#define IDC_NODECORATION_IMG 207
#define IDC_DISPLAY 208
#define IDC_DISPLAY_DESC 209
#define IDC_DISPLAY_EXTRA_DESC 210
#define IDC_CLIENT_NONE 211
#define IDC_XDMCP 212
#define IDC_CLIENT 213
#define IDC_CLIENT_LOCAL 214
#define IDC_CLIENT_REMOTE 215
#define IDC_CLIENT_HOST 216
#define IDC_CLIENT_USER 217
#define IDC_CLIENT_PASSWORD 218
#define IDC_CLIENT_CONFIGURE 219
#define IDC_CLIENT_PROGRAM 220
#define IDC_XDMCP_QUERY 221
#define IDC_XDMCP_BROADCAST 222
#define IDC_XDMCP_INDIRECT 223
#define IDC_XDMCP_HOST 224
#define IDC_CLIENT_NONE_DESC 225
#define IDC_XDMCP_DESC 226
#define IDC_CLIENT_DESC 227
#define IDC_XDMCP_QUERY_DESC 228
#define IDC_CLIENT_PROGRAM_DESC 229
#define IDC_CLIENT_HOST_DESC 230
#define IDC_CLIENT_USER_DESC 231
#define IDC_CLIENT_PASSWORD_DESC 232
#define IDC_CLIENT_REMOTEPROGRAM 233
#define IDC_CLIENT_REMOTEPROGRAM_DESC 234
#define IDC_FONTPATH_DESC 240
#define IDC_FINISH_DESC 250
#define IDC_FINISH_SAVE 251
#define IDC_FINISH_SAVE_DESC 252
#define IDC_CLIPBOARD 260
#define IDC_CLIPBOARD_DESC 261
#define IDC_EXTRA_PARAMS 262
#define IDC_EXTRA_PARAMS_DESC 263
#define IDC_WGL 264
#define IDC_WGL_DESC 265
#define IDC_CLIPBOARDPRIMARY 266
#define IDC_CLIPBOARDPRIMARY_DESC 267
#define IDC_DISABLEAC 268
#define IDC_DISABLEAC_DESC 269
#define IDC_XDMCP_TERMINATE 270
#define IDS_DISPLAY_TITLE 300
#define IDS_DISPLAY_SUBTITLE 301
#define IDS_CLIENTS_TITLE 302
#define IDS_CLIENTS_SUBTITLE 303
#define IDS_PROGRAM_TITLE 304
#define IDS_PROGRAM_SUBTITLE 305
#define IDS_XDMCP_TITLE 306
#define IDS_XDMCP_SUBTITLE 307
#define IDS_FONTPATH_TITLE 308
#define IDS_FONTPATH_SUBTITLE 309
#define IDS_FINISH_TITLE 310
#define IDS_FINISH_SUBTITLE 311
#define IDS_EXTRA_TITLE 312
#define IDS_EXTRA_SUBTITLE 313
#define IDS_SAVE_TITLE 320
#define IDS_SAVE_FILETITLE 321
#define IDS_SAVE_FILTER 322
|