mirror of
https://github.com/reactos/reactos.git
synced 2025-06-23 12:10:19 +00:00

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
45 lines
835 B
C
45 lines
835 B
C
#ifndef __CMD_PRECOMP_H
|
|
#define __CMD_PRECOMP_H
|
|
|
|
#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>
|
|
#include <malloc.h>
|
|
#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>
|
|
#include <assert.h>
|
|
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/rtlfuncs.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#include "cmd.h"
|
|
#include "config.h"
|
|
#include "batch.h"
|
|
|
|
#include <wine/debug.h>
|
|
WINE_DEFAULT_DEBUG_CHANNEL(cmd);
|
|
#ifdef UNICODE
|
|
#define debugstr_aw debugstr_w
|
|
#else
|
|
#define debugstr_aw debugstr_a
|
|
#endif
|
|
|
|
#endif /* __CMD_PRECOMP_H */
|