899826ea2447adbd7a843911021087cc8212195b
[reactos.git] / reactos / base / applications / msconfig_new / precomp.h
1 #ifndef _MSCONFIG_PCH_
2 #define _MSCONFIG_PCH_
3
4 // NOTE: It is completely idiotic to need those defines defined
5 // for having the *_s string functions. In the MS CRT they are
6 // directly available without further tricks.
7 #define MINGW_HAS_SECURE_API 1
8
9 #include <assert.h>
10
11 #include <stdarg.h>
12
13 #include <stdio.h>
14 #include <string.h> // FIXME: Should be normally useless in a proper CRT...
15 #include <tchar.h>
16
17 #define WIN32_NO_STATUS
18 #define _INC_WINDOWS
19 #define COM_NO_WINDOWS_H
20 #define NTOS_MODE_USER
21
22 #include <windef.h>
23 #include <winbase.h>
24 #include <winnls.h>
25 #include <winreg.h>
26 #include <winuser.h>
27 #include <winver.h>
28
29 #include <shlobj.h>
30 #include <strsafe.h>
31
32 #include "msconfig.h"
33 #include "resource.h"
34
35 #define MAX_KEY_LENGTH 255
36 #define MAX_VALUE_NAME 16383
37
38 #endif /* _MSCONFIG_PCH_ */