mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
44
base/shell/cmd/precomp.h
Normal file
44
base/shell/cmd/precomp.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
#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 <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#include <malloc.h>
|
||||
#include <tchar.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winnls.h>
|
||||
#include <winreg.h>
|
||||
#include <winuser.h>
|
||||
#include <wincon.h>
|
||||
#include <shellapi.h>
|
||||
|
||||
#define NTOS_MODE_USER
|
||||
#include <ndk/rtlfuncs.h>
|
||||
|
||||
#include <conutils.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 */
|
Loading…
Add table
Add a link
Reference in a new issue