[CMAKE]
[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 <stdlib.h>
11 #include <malloc.h>
12 #define WIN32_NO_STATUS
13 #include <windows.h>
14 #include <winnt.h>
15 #include <shellapi.h>
16
17 #include <tchar.h>
18 #include <direct.h>
19
20 #include <ctype.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <math.h>
25 #include <time.h>
26 #include <assert.h>
27
28 #define NTOS_MODE_USER
29 #include <ndk/ntndk.h>
30
31 #include "resource.h"
32
33 #include "cmd.h"
34 #include "config.h"
35 #include "batch.h"
36
37 #include <reactos/buildno.h>
38 #include <reactos/version.h>
39
40 #include <wine/debug.h>
41 WINE_DEFAULT_DEBUG_CHANNEL(cmd);
42 #ifdef UNICODE
43 #define debugstr_aw debugstr_w
44 #else
45 #define debugstr_aw debugstr_a
46 #endif
47
48 #endif /* __CMD_PRECOMP_H */