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 <strsafe.h> 29 30 #include <conutils.h> 31 32 #include "resource.h" 33 34 #include "cmd.h" 35 #include "config.h" 36 #include "batch.h" 37 38 #include <wine/debug.h> 39 WINE_DEFAULT_DEBUG_CHANNEL(cmd); 40 #ifdef UNICODE 41 #define debugstr_aw debugstr_w 42 #else 43 #define debugstr_aw debugstr_a 44 #endif 45 46 #endif /* __CMD_PRECOMP_H */ 47