[EXPLORER] Reduce the spam due to the broken CBandSite in browseui
[reactos.git] / base / shell / cmd / precomp.h
1 #ifndef __CMD_PRECOMP_H
2 #define __CMD_PRECOMP_H
3
4 #ifdef _MSC_VER
5 #pragma warning ( disable : 4103 ) /* use #pragma pack to change alignment */
6 #undef _CRT_SECURE_NO_DEPRECATE
7 #define _CRT_SECURE_NO_DEPRECATE
8 #endif /*_MSC_VER */
9
10 #include <stdio.h>
11 #include <stdarg.h>
12 #include <stdlib.h>
13 #include <malloc.h>
14 #include <tchar.h>
15
16 #define WIN32_NO_STATUS
17 #include <windef.h>
18 #include <winbase.h>
19 #include <winnls.h>
20 #include <winreg.h>
21 #include <winuser.h>
22 #include <wincon.h>
23 #include <shellapi.h>
24
25 #define NTOS_MODE_USER
26 #include <ndk/rtlfuncs.h>
27
28 #include <conutils.h>
29
30 #include "resource.h"
31
32 #include "cmd.h"
33 #include "config.h"
34 #include "batch.h"
35
36 #include <wine/debug.h>
37 WINE_DEFAULT_DEBUG_CHANNEL(cmd);
38 #ifdef UNICODE
39 #define debugstr_aw debugstr_w
40 #else
41 #define debugstr_aw debugstr_a
42 #endif
43
44 #endif /* __CMD_PRECOMP_H */