2010-02-27 19:51:54 +00:00
|
|
|
#ifndef __CMD_PRECOMP_H
|
|
|
|
#define __CMD_PRECOMP_H
|
2007-08-02 06:59:36 +00:00
|
|
|
|
2006-02-16 23:23:37 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning ( disable : 4103 ) /* use #pragma pack to change alignment */
|
|
|
|
#undef _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#endif//_MSC_VER
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2007-08-01 10:17:13 +00:00
|
|
|
#include <malloc.h>
|
2006-02-16 23:23:37 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winnt.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <direct.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define NTOS_MODE_USER
|
|
|
|
#include <ndk/ntndk.h>
|
|
|
|
|
2007-08-01 10:17:13 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
2006-02-16 23:23:37 +00:00
|
|
|
#include "cmd.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "batch.h"
|
|
|
|
|
2008-01-17 14:50:36 +00:00
|
|
|
#include <reactos/buildno.h>
|
|
|
|
#include <reactos/version.h>
|
2007-08-01 10:17:13 +00:00
|
|
|
|
2008-05-15 20:02:05 +00:00
|
|
|
#include <wine/debug.h>
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(cmd);
|
2008-05-15 20:29:50 +00:00
|
|
|
#ifdef UNICODE
|
|
|
|
#define debugstr_aw debugstr_w
|
|
|
|
#else
|
|
|
|
#define debugstr_aw debugstr_a
|
|
|
|
#endif
|
2010-02-27 19:51:54 +00:00
|
|
|
|
|
|
|
#endif /* __CMD_PRECOMP_H */
|