ReactOS 0.4.15-dev-7788-g1ad9096
settings.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Console Server DLL
4 * FILE: win32ss/user/winsrv/concfg/settings.c
5 * PURPOSE: Console settings management
6 * PROGRAMMERS: Johannes Anderwald
7 * Hermes Belusca-Maito (hermes.belusca@sfr.fr)
8 */
9
10/* INCLUDES *******************************************************************/
11
12#include "precomp.h"
13
14// /* Undocumented user definitions */
15// #include <undocuser.h>
16
17#include "settings.h"
18
19#define NDEBUG
20#include <debug.h>
21
22/* GLOBALS ********************************************************************/
23
24/* Default cursor size -- see conio_winsrv.h */
25// #define SMALL_SIZE 25
26#define CSR_DEFAULT_CURSOR_SIZE 25
27
28/* Default attributes -- see conio.h */
29#define DEFAULT_SCREEN_ATTRIB (FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED)
30#define DEFAULT_POPUP_ATTRIB (FOREGROUND_BLUE | FOREGROUND_RED | \
31 BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_INTENSITY)
32
33/*
34 * Default 16-color palette for foreground and background
35 * (corresponding flags in comments).
36 */
37static const COLORREF s_Colors[16] =
38{
39 RGB(0, 0, 0), // (Black)
40 RGB(0, 0, 128), // BLUE
41 RGB(0, 128, 0), // GREEN
42 RGB(0, 128, 128), // BLUE | GREEN
43 RGB(128, 0, 0), // RED
44 RGB(128, 0, 128), // BLUE | RED
45 RGB(128, 128, 0), // GREEN | RED
46 RGB(192, 192, 192), // BLUE | GREEN | RED
47
48 RGB(128, 128, 128), // (Grey) INTENSITY
49 RGB(0, 0, 255), // BLUE | INTENSITY
50 RGB(0, 255, 0), // GREEN | INTENSITY
51 RGB(0, 255, 255), // BLUE | GREEN | INTENSITY
52 RGB(255, 0, 0), // RED | INTENSITY
53 RGB(255, 0, 255), // BLUE | RED | INTENSITY
54 RGB(255, 255, 0), // GREEN | RED | INTENSITY
55 RGB(255, 255, 255) // BLUE | GREEN | RED | INTENSITY
56};
57
58
59/* FUNCTIONS ******************************************************************/
60
61static VOID
63 OUT LPWSTR DestString,
64 IN LPCWSTR ConsoleName,
65 IN UINT MaxStrLen)
66{
67#define PATH_SEPARATOR L'\\'
68
69 UINT wLength;
70
71 if ( DestString == NULL || ConsoleName == NULL ||
72 *ConsoleName == L'\0' || MaxStrLen == 0 )
73 {
74 return;
75 }
76
77 wLength = GetSystemWindowsDirectoryW(DestString, MaxStrLen);
78 if ((wLength > 0) && (_wcsnicmp(ConsoleName, DestString, wLength) == 0))
79 {
80 StringCchCopyW(DestString, MaxStrLen, L"%SystemRoot%");
81 StringCchCatW(DestString, MaxStrLen, ConsoleName + wLength);
82 }
83 else
84 {
85 StringCchCopyW(DestString, MaxStrLen, ConsoleName);
86 }
87
88 /* Replace path separators (backslashes) by underscores */
89 while ((DestString = wcschr(DestString, PATH_SEPARATOR))) *DestString = L'_';
90}
91
94 IN LPCWSTR ConsoleTitle,
95 OUT PHKEY phSubKey,
96 IN REGSAM samDesired,
98{
101 WCHAR szBuffer[MAX_PATH] = L"Console\\";
102 WCHAR szBuffer2[MAX_PATH] = L"";
103 HKEY hKey; // CurrentUserKeyHandle
104
105 /*
106 * Console properties are stored under the HKCU\Console\* key.
107 *
108 * We use the original console title as the subkey name for storing
109 * console properties. We need to distinguish whether we were launched
110 * via the console application directly or via a shortcut.
111 *
112 * If the title of the console corresponds to a path (more precisely,
113 * if the title is of the form: C:\ReactOS<some_path><some_app.exe>),
114 * then use the corresponding unexpanded path and with the backslashes
115 * replaced by underscores, to make the registry happy,
116 * i.e. %SystemRoot%_<some_path>_<some_app.exe>
117 */
118
119 /* Open the per-user registry key where the console properties are saved */
120 Status = RtlOpenCurrentUser(/*samDesired*/MAXIMUM_ALLOWED, (PHANDLE)&/*CurrentUserKeyHandle*/hKey);
121 if (!NT_SUCCESS(Status))
122 {
123 DPRINT1("RtlOpenCurrentUser() failed, Status = 0x%08lx\n", Status);
125 return FALSE;
126 }
127
128 /*
129 * Try to open properties via the console title:
130 * to make the registry happy, replace all the
131 * backslashes by underscores.
132 */
133 TranslateConsoleName(szBuffer2, ConsoleTitle, ARRAYSIZE(szBuffer2));
134
135 /* Create the registry path */
136 StringCchCatW(szBuffer, MAX_PATH - wcslen(szBuffer) - 1, szBuffer2);
137
138 /* Create or open the registry key */
139 if (Create)
140 {
141 /* Create the key */
143 szBuffer,
144 0, NULL,
146 samDesired,
147 NULL,
148 phSubKey,
149 NULL) == ERROR_SUCCESS);
150 }
151 else
152 {
153 /* Open the key */
155 szBuffer,
156 0,
157 samDesired,
158 phSubKey) == ERROR_SUCCESS);
159 }
160
161 /* Close the parent key and return success or not */
162 NtClose(hKey);
163 return Success;
164}
165
169 IN BOOLEAN DefaultSettings)
170{
172 HKEY hKey;
173 DWORD dwNumValues = 0;
174 DWORD dwIndex;
175 DWORD dwColorIndex = 0;
176 DWORD dwType;
177 WCHAR szValueName[MAX_PATH];
178 DWORD dwValueName;
179 WCHAR szValue[LF_FACESIZE] = L"";
180 DWORD Value;
181 DWORD dwValue;
182
183 if (!ConCfgOpenUserSettings(DefaultSettings ? L"" : ConsoleInfo->ConsoleTitle,
184 &hKey, KEY_READ, FALSE))
185 {
186 DPRINT("ConCfgOpenUserSettings() failed\n");
187 return FALSE;
188 }
189
191 &dwNumValues, NULL, NULL, NULL, NULL) != ERROR_SUCCESS)
192 {
193 DPRINT("ConCfgReadUserSettings: RegQueryInfoKeyW() failed\n");
195 return FALSE;
196 }
197
198 DPRINT("ConCfgReadUserSettings() entered, dwNumValues %d\n", dwNumValues);
199
200 for (dwIndex = 0; dwIndex < dwNumValues; dwIndex++)
201 {
202 dwValue = sizeof(Value);
203 dwValueName = ARRAYSIZE(szValueName);
204
205 if (RegEnumValueW(hKey, dwIndex, szValueName, &dwValueName, NULL, &dwType, (BYTE*)&Value, &dwValue) != ERROR_SUCCESS)
206 {
207 if (dwType == REG_SZ)
208 {
209 /*
210 * Retry in case of string value
211 */
212 dwValue = sizeof(szValue);
213 dwValueName = ARRAYSIZE(szValueName);
214 if (RegEnumValueW(hKey, dwIndex, szValueName, &dwValueName, NULL, NULL, (BYTE*)szValue, &dwValue) != ERROR_SUCCESS)
215 break;
216 }
217 else
218 {
219 break;
220 }
221 }
222
223 if (!wcsncmp(szValueName, L"ColorTable", wcslen(L"ColorTable")))
224 {
225 dwColorIndex = 0;
226 swscanf(szValueName, L"ColorTable%2d", &dwColorIndex);
227 if (dwColorIndex < ARRAYSIZE(ConsoleInfo->ColorTable))
228 {
229 ConsoleInfo->ColorTable[dwColorIndex] = Value;
230 Success = TRUE;
231 }
232 }
233 if (!wcscmp(szValueName, L"CodePage"))
234 {
236 ConsoleInfo->CodePage = Value;
237 Success = TRUE;
238 }
239 else if (!wcscmp(szValueName, L"FaceName"))
240 {
241 /* A NULL value means that the defaults should be used instead */
242 if (*szValue)
243 {
244 StringCchCopyNW(ConsoleInfo->FaceName, ARRAYSIZE(ConsoleInfo->FaceName),
245 szValue, ARRAYSIZE(szValue));
246 }
247 Success = TRUE;
248 }
249 else if (!wcscmp(szValueName, L"FontFamily"))
250 {
251 /* A zero value means that the defaults should be used instead */
252 if (Value)
253 ConsoleInfo->FontFamily = Value;
254 Success = TRUE;
255 }
256 else if (!wcscmp(szValueName, L"FontSize"))
257 {
258 /* A zero value means that the defaults should be used instead */
259 if (Value)
260 {
261 ConsoleInfo->FontSize.X = LOWORD(Value); // Width
262 ConsoleInfo->FontSize.Y = HIWORD(Value); // Height
263 }
264 Success = TRUE;
265 }
266 else if (!wcscmp(szValueName, L"FontWeight"))
267 {
268 /* A zero value means that the defaults should be used instead */
269 if (Value)
270 ConsoleInfo->FontWeight = Value;
271 Success = TRUE;
272 }
273 else if (!wcscmp(szValueName, L"HistoryBufferSize"))
274 {
275 ConsoleInfo->HistoryBufferSize = Value;
276 Success = TRUE;
277 }
278 else if (!wcscmp(szValueName, L"NumberOfHistoryBuffers"))
279 {
280 ConsoleInfo->NumberOfHistoryBuffers = Value;
281 Success = TRUE;
282 }
283 else if (!wcscmp(szValueName, L"HistoryNoDup"))
284 {
285 ConsoleInfo->HistoryNoDup = !!Value;
286 Success = TRUE;
287 }
288 else if (!wcscmp(szValueName, L"QuickEdit"))
289 {
290 ConsoleInfo->QuickEdit = !!Value;
291 Success = TRUE;
292 }
293 else if (!wcscmp(szValueName, L"InsertMode"))
294 {
295 ConsoleInfo->InsertMode = !!Value;
296 Success = TRUE;
297 }
298 else if (!wcscmp(szValueName, L"ScreenBufferSize"))
299 {
300 ConsoleInfo->ScreenBufferSize.X = LOWORD(Value);
301 ConsoleInfo->ScreenBufferSize.Y = HIWORD(Value);
302 Success = TRUE;
303 }
304 else if (!wcscmp(szValueName, L"FullScreen"))
305 {
306 ConsoleInfo->FullScreen = Value;
307 Success = TRUE;
308 }
309 else if (!wcscmp(szValueName, L"WindowPosition"))
310 {
311 ConsoleInfo->AutoPosition = FALSE;
312 ConsoleInfo->WindowPosition.x = LOWORD(Value);
313 ConsoleInfo->WindowPosition.y = HIWORD(Value);
314 Success = TRUE;
315 }
316 else if (!wcscmp(szValueName, L"WindowSize"))
317 {
318 ConsoleInfo->WindowSize.X = LOWORD(Value);
319 ConsoleInfo->WindowSize.Y = HIWORD(Value);
320 Success = TRUE;
321 }
322 else if (!wcscmp(szValueName, L"CursorSize"))
323 {
324 ConsoleInfo->CursorSize = min(max(Value, 0), 100);
325 Success = TRUE;
326 }
327 else if (!wcscmp(szValueName, L"ScreenColors"))
328 {
329 ConsoleInfo->ScreenAttributes = (USHORT)Value;
330 Success = TRUE;
331 }
332 else if (!wcscmp(szValueName, L"PopupColors"))
333 {
334 ConsoleInfo->PopupAttributes = (USHORT)Value;
335 Success = TRUE;
336 }
337 }
338
340 return Success;
341}
342
346 IN BOOLEAN DefaultSettings)
347{
348 HKEY hKey;
349 DWORD Storage = 0;
350
351#define SetConsoleSetting(SettingName, SettingType, SettingSize, Setting, DefaultValue) \
352do { \
353 if (DefaultSettings || (!DefaultSettings && (*(Setting) != (DefaultValue)))) \
354 { \
355 RegSetValueExW(hKey, (SettingName), 0, (SettingType), (PBYTE)(Setting), (SettingSize)); \
356 } \
357 else \
358 { \
359 RegDeleteValueW(hKey, (SettingName)); \
360 } \
361} while (0)
362
363 WCHAR szValueName[15];
364 UINT i;
365
366 if (!ConCfgOpenUserSettings(DefaultSettings ? L"" : ConsoleInfo->ConsoleTitle,
367 &hKey, KEY_WRITE, TRUE))
368 {
369 return FALSE;
370 }
371
372 for (i = 0; i < ARRAYSIZE(ConsoleInfo->ColorTable); ++i)
373 {
374 /*
375 * Write only the new value if we are saving the global settings
376 * or we are saving settings for a particular console, which differs
377 * from the default ones.
378 */
379 swprintf(szValueName, L"ColorTable%02u", i);
380 SetConsoleSetting(szValueName, REG_DWORD, sizeof(DWORD), &ConsoleInfo->ColorTable[i], s_Colors[i]);
381 }
382
383 SetConsoleSetting(L"CodePage", REG_DWORD, sizeof(DWORD), &ConsoleInfo->CodePage, CP_ACP /* CP_OEMCP */);
384 SetConsoleSetting(L"FaceName", REG_SZ, (wcslen(ConsoleInfo->FaceName) + 1) * sizeof(WCHAR), ConsoleInfo->FaceName, UNICODE_NULL); // wcsnlen
385 SetConsoleSetting(L"FontFamily", REG_DWORD, sizeof(DWORD), &ConsoleInfo->FontFamily, FF_DONTCARE);
386
387 Storage = MAKELONG(ConsoleInfo->FontSize.X, ConsoleInfo->FontSize.Y); // Width, Height
388 SetConsoleSetting(L"FontSize", REG_DWORD, sizeof(DWORD), &Storage, 0);
389
390 SetConsoleSetting(L"FontWeight", REG_DWORD, sizeof(DWORD), &ConsoleInfo->FontWeight, FW_DONTCARE);
391
392 SetConsoleSetting(L"HistoryBufferSize", REG_DWORD, sizeof(DWORD), &ConsoleInfo->HistoryBufferSize, 50);
393 SetConsoleSetting(L"NumberOfHistoryBuffers", REG_DWORD, sizeof(DWORD), &ConsoleInfo->NumberOfHistoryBuffers, 4);
394
395 Storage = ConsoleInfo->HistoryNoDup;
396 SetConsoleSetting(L"HistoryNoDup", REG_DWORD, sizeof(DWORD), &Storage, FALSE);
397
398 Storage = ConsoleInfo->QuickEdit;
399 SetConsoleSetting(L"QuickEdit", REG_DWORD, sizeof(DWORD), &Storage, FALSE);
400
401 Storage = ConsoleInfo->InsertMode;
402 SetConsoleSetting(L"InsertMode", REG_DWORD, sizeof(DWORD), &Storage, TRUE);
403
404 Storage = MAKELONG(ConsoleInfo->ScreenBufferSize.X, ConsoleInfo->ScreenBufferSize.Y);
405 SetConsoleSetting(L"ScreenBufferSize", REG_DWORD, sizeof(DWORD), &Storage, MAKELONG(80, 300));
406
407 Storage = ConsoleInfo->FullScreen;
408 SetConsoleSetting(L"FullScreen", REG_DWORD, sizeof(DWORD), &Storage, FALSE);
409
410 if (ConsoleInfo->AutoPosition == FALSE)
411 {
412 Storage = MAKELONG(ConsoleInfo->WindowPosition.x, ConsoleInfo->WindowPosition.y);
413 RegSetValueExW(hKey, L"WindowPosition", 0, REG_DWORD, (PBYTE)&Storage, sizeof(DWORD));
414 }
415 else
416 {
417 RegDeleteValueW(hKey, L"WindowPosition");
418 }
419
420 Storage = MAKELONG(ConsoleInfo->WindowSize.X, ConsoleInfo->WindowSize.Y);
421 SetConsoleSetting(L"WindowSize", REG_DWORD, sizeof(DWORD), &Storage, MAKELONG(80, 25));
422
423 SetConsoleSetting(L"CursorSize", REG_DWORD, sizeof(DWORD), &ConsoleInfo->CursorSize, CSR_DEFAULT_CURSOR_SIZE);
424
425 Storage = ConsoleInfo->ScreenAttributes;
427
428 Storage = ConsoleInfo->PopupAttributes;
430
432 return TRUE;
433}
434
435VOID
438{
439 if (ConsoleInfo == NULL) return;
440
441 // ASSERT(ConsoleInfo->cbSize >= sizeof(CONSOLE_STATE_INFO));
442
444
445 // wcsncpy(ConsoleInfo->FaceName, L"DejaVu Sans Mono", LF_FACESIZE);
446 // ConsoleInfo->FontSize = MAKELONG(8, 12); // 0x000C0008; // font is 8x12
447
448 StringCchCopyW(ConsoleInfo->FaceName, ARRAYSIZE(ConsoleInfo->FaceName), L"VGA"); // HACK: !!
449 // ConsoleInfo->FaceName[0] = UNICODE_NULL;
450 // ConsoleInfo->FontSize.X = 8;
451 // ConsoleInfo->FontSize.Y = 12;
452 ConsoleInfo->FontSize.X = 0; // HACK: !!
453 ConsoleInfo->FontSize.Y = 16; // HACK: !!
454 ConsoleInfo->FontFamily = FF_DONTCARE;
455 ConsoleInfo->FontWeight = FW_NORMAL; // FW_DONTCARE;
456
457 /* Initialize the default properties */
458
459// #define DEFAULT_HISTORY_COMMANDS_NUMBER 50
460// #define DEFAULT_HISTORY_BUFFERS_NUMBER 4
461 ConsoleInfo->HistoryBufferSize = 50;
462 ConsoleInfo->NumberOfHistoryBuffers = 4;
463 ConsoleInfo->HistoryNoDup = FALSE;
464
465 ConsoleInfo->QuickEdit = FALSE;
466 ConsoleInfo->InsertMode = TRUE;
467 // ConsoleInfo->InputBufferSize = 0;
468
469 // Rule: ScreenBufferSize >= WindowSize
470 ConsoleInfo->ScreenBufferSize.X = 80;
471 ConsoleInfo->ScreenBufferSize.Y = 300;
472 ConsoleInfo->WindowSize.X = 80;
473 ConsoleInfo->WindowSize.Y = 25;
474
475 ConsoleInfo->FullScreen = FALSE;
476 ConsoleInfo->AutoPosition = TRUE;
477 ConsoleInfo->WindowPosition.x = 0;
478 ConsoleInfo->WindowPosition.y = 0;
479
481
482 ConsoleInfo->ScreenAttributes = DEFAULT_SCREEN_ATTRIB;
483 ConsoleInfo->PopupAttributes = DEFAULT_POPUP_ATTRIB;
484
485 RtlCopyMemory(ConsoleInfo->ColorTable, s_Colors, sizeof(s_Colors));
486
487 ConsoleInfo->CodePage = GetOEMCP();
488}
489
490VOID
493{
494 if (ConsoleInfo == NULL) return;
495
496 /*
497 * 1. Load the default values
498 */
500
501 /*
502 * 2. Overwrite them with the ones stored in HKCU\Console.
503 * If the HKCU\Console key doesn't exist, create it
504 * and store the default values inside.
505 */
508}
509
510/* EOF */
unsigned char BOOLEAN
LONG NTSTATUS
Definition: precomp.h:26
#define DPRINT1
Definition: precomp.h:8
@ Create
Definition: registry.c:563
#define RegCloseKey(hKey)
Definition: registry.h:49
#define ERROR_SUCCESS
Definition: deptool.c:10
#define LF_FACESIZE
Definition: dimm.idl:39
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:32
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
LONG WINAPI RegCreateKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
Definition: reg.c:1096
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3362
LONG WINAPI RegSetValueExW(_In_ HKEY hKey, _In_ LPCWSTR lpValueName, _In_ DWORD Reserved, _In_ DWORD dwType, _In_ CONST BYTE *lpData, _In_ DWORD cbData)
Definition: reg.c:4911
LONG WINAPI RegDeleteValueW(HKEY hKey, LPCWSTR lpValueName)
Definition: reg.c:2361
LONG WINAPI RegEnumValueW(_In_ HKEY hKey, _In_ DWORD index, _Out_ LPWSTR value, _Inout_ PDWORD val_count, _Reserved_ PDWORD reserved, _Out_opt_ PDWORD type, _Out_opt_ LPBYTE data, _Inout_opt_ PDWORD count)
Definition: reg.c:2859
LONG WINAPI RegQueryInfoKeyW(HKEY hKey, LPWSTR lpClass, LPDWORD lpcClass, LPDWORD lpReserved, LPDWORD lpcSubKeys, LPDWORD lpcMaxSubKeyLen, LPDWORD lpcMaxClassLen, LPDWORD lpcValues, LPDWORD lpcMaxValueNameLen, LPDWORD lpcMaxValueLen, LPDWORD lpcbSecurityDescriptor, PFILETIME lpftLastWriteTime)
Definition: reg.c:3691
#define wcschr
Definition: compat.h:17
#define CP_ACP
Definition: compat.h:109
#define SetLastError(x)
Definition: compat.h:752
#define MAX_PATH
Definition: compat.h:34
UINT WINAPI GetSystemWindowsDirectoryW(OUT LPWSTR lpBuffer, IN UINT uSize)
Definition: path.c:2397
BOOL WINAPI IsValidCodePage(UINT CodePage)
Definition: nls.c:1604
#define swprintf
Definition: precomp.h:40
#define RGB(r, g, b)
Definition: precomp.h:62
@ Success
Definition: eventcreate.c:712
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
Status
Definition: gdiplustypes.h:25
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
_Check_return_ _CRTIMP int __cdecl swscanf(_In_z_ const wchar_t *_Src, _In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
NTSYSAPI ULONG WINAPI RtlNtStatusToDosError(NTSTATUS)
#define REG_SZ
Definition: layer.c:22
static IStorage Storage
Definition: ole2.c:3548
#define min(a, b)
Definition: monoChain.cc:55
unsigned int UINT
Definition: ndis.h:50
NTSYSAPI NTSTATUS NTAPI RtlOpenCurrentUser(_In_ ACCESS_MASK DesiredAccess, _Out_ PHANDLE KeyHandle)
#define KEY_READ
Definition: nt_native.h:1023
#define REG_OPTION_NON_VOLATILE
Definition: nt_native.h:1057
NTSTATUS NTAPI NtClose(IN HANDLE Handle)
Definition: obhandle.c:3402
#define KEY_WRITE
Definition: nt_native.h:1031
#define MAXIMUM_ALLOWED
Definition: nt_native.h:83
#define UNICODE_NULL
PVOID *typedef PHANDLE
Definition: ntsecpkg.h:455
#define L(x)
Definition: ntvdm.h:50
#define LOWORD(l)
Definition: pedump.c:82
BYTE * PBYTE
Definition: pedump.c:66
unsigned short USHORT
Definition: pedump.c:61
#define REG_DWORD
Definition: sdbapi.c:596
_Check_return_ _CRTIMP int __cdecl wcscmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
_Check_return_ _CRTIMP int __cdecl wcsncmp(_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
_Check_return_ _CRTIMP int __cdecl _wcsnicmp(_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
#define DPRINT
Definition: sndvol32.h:71
STRSAFEAPI StringCchCatW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:325
STRSAFEAPI StringCchCopyW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:149
STRSAFEAPI StringCchCopyNW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszSrc, size_t cchToCopy)
Definition: strsafe.h:236
static CONSOLE_SCREEN_BUFFER_INFO ConsoleInfo
Definition: video.c:47
#define max(a, b)
Definition: svc.c:63
#define RtlCopyMemory(Destination, Source, Length)
Definition: typedefs.h:263
#define IN
Definition: typedefs.h:39
#define MAKELONG(a, b)
Definition: typedefs.h:249
#define HIWORD(l)
Definition: typedefs.h:247
#define OUT
Definition: typedefs.h:40
_Must_inspect_result_ _In_ WDFKEY _In_ PCUNICODE_STRING _Out_opt_ PUSHORT _Inout_opt_ PUNICODE_STRING Value
Definition: wdfregistry.h:413
#define DEFAULT_SCREEN_ATTRIB
Definition: settings.c:29
#define PATH_SEPARATOR
VOID ConCfgInitDefaultSettings(IN OUT PCONSOLE_STATE_INFO ConsoleInfo)
Definition: settings.c:436
VOID ConCfgGetDefaultSettings(IN OUT PCONSOLE_STATE_INFO ConsoleInfo)
Definition: settings.c:491
static const COLORREF s_Colors[16]
Definition: settings.c:37
#define CSR_DEFAULT_CURSOR_SIZE
Definition: settings.c:26
#define DEFAULT_POPUP_ATTRIB
Definition: settings.c:30
BOOLEAN ConCfgOpenUserSettings(IN LPCWSTR ConsoleTitle, OUT PHKEY phSubKey, IN REGSAM samDesired, IN BOOLEAN Create)
Definition: settings.c:93
BOOLEAN ConCfgWriteUserSettings(IN PCONSOLE_STATE_INFO ConsoleInfo, IN BOOLEAN DefaultSettings)
Definition: settings.c:344
BOOLEAN ConCfgReadUserSettings(IN OUT PCONSOLE_STATE_INFO ConsoleInfo, IN BOOLEAN DefaultSettings)
Definition: settings.c:167
#define SetConsoleSetting(SettingName, SettingType, SettingSize, Setting, DefaultValue)
static VOID TranslateConsoleName(OUT LPWSTR DestString, IN LPCWSTR ConsoleName, IN UINT MaxStrLen)
Definition: settings.c:62
DWORD COLORREF
Definition: windef.h:300
#define FW_DONTCARE
Definition: wingdi.h:368
#define FF_DONTCARE
Definition: wingdi.h:448
#define FW_NORMAL
Definition: wingdi.h:373
UINT WINAPI GetOEMCP(void)
Definition: nls.c:2322
ACCESS_MASK REGSAM
Definition: winreg.h:69
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
unsigned char BYTE
Definition: xxhash.c:193