2002-10-19 Casper S. Hornstrup <chorns@users.sourceforge.net>

* include/ntos.h: Include relevant files.
	* include/internal/ke.h: Include files relative to
	ntoskrnl/include.
	* include/internal/arch/ke.h: Ditto.

svn path=/trunk/; revision=3638
This commit is contained in:
Casper Hornstrup 2002-10-19 14:24:16 +00:00
parent 21f3631d43
commit 0f48860c6c
4 changed files with 1077 additions and 1007 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,12 +1,75 @@
#ifndef _NTOS_H
#define _NTOS_H
/* $Id: ntos.h,v 1.5 2002/09/08 10:22:28 chorns Exp $ */
/* $Id: ntos.h,v 1.6 2002/10/19 14:24:15 chorns Exp $ */
#if defined(NTOS_MODE_USER)
// include windows.h before ntddk.h to get user mode prototype for InterlockedXxx functions
#include <windows.h>
#include <ddk/ntddk.h>
#include <ntos/heap.h>
#include <ntos/synch.h>
#include <ntos/keyboard.h>
#include <ntos/console.h>
#include <ntos/port.h>
#include "ntos/types.h"
#include "ntos/cdrom.h"
#include "ntos/console.h"
#include "ntos/disk.h"
#include "ntos/except.h"
#include "ntos/file.h"
#include "ntos/gditypes.h"
#include "ntos/heap.h"
#include "ntos/kdbgsyms.h"
#include "ntos/keyboard.h"
#include "ntos/minmax.h"
#include "ntos/mm.h"
#include "ntos/ntdef.h"
#include "ntos/port.h"
#include "ntos/ps.h"
#include "ntos/registry.h"
#include "ntos/security.h"
#include "ntos/synch.h"
#include "ntos/time.h"
#include "napi/i386/segment.h"
#include "napi/types.h"
#include "napi/core.h"
#include "napi/dbg.h"
#include "napi/lpc.h"
#include "napi/npipe.h"
#include "napi/shared_data.h"
#include "napi/win32.h"
#include "ntdll/csr.h"
#include "ntdll/dbg.h"
#include "ntdll/ldr.h"
#include "ntdll/registry.h"
#include "ntdll/rtl.h"
#include "ntdll/trace.h"
#include "kernel32/error.h"
#else // Assume kernel mode
#include <ddk/ntddk.h>
#include <ddk/ntifs.h>
#include "ntos/types.h"
#include "ntos/cdrom.h"
#include "ntos/console.h"
#include "ntos/disk.h"
#include "ntos/except.h"
#include "ntos/file.h"
#include "ntos/gditypes.h"
#include "ntos/heap.h"
#include "ntos/kdbgsyms.h"
#include "ntos/keyboard.h"
#include "ntos/minmax.h"
#include "ntos/mm.h"
#include "ntos/ntdef.h"
#include "ntos/port.h"
#include "ntos/ps.h"
#include "ntos/registry.h"
#include "ntos/security.h"
#include "ntos/synch.h"
#include "ntos/time.h"
#include "napi/i386/segment.h"
#include "napi/types.h"
#include "napi/core.h"
#include "napi/dbg.h"
#include "napi/lpc.h"
#include "napi/npipe.h"
#include "napi/shared_data.h"
#include "napi/win32.h"
#endif
#endif /* ndef _NTOS_H */

View file

@ -20,7 +20,7 @@
#define __NTOSKRNL_INCLUDE_INTERNAL_ARCH_KE_H
#ifdef i386
#include <internal/i386/ke.h>
#include "../i386/ke.h"
#else
#error "Unknown processor"
#endif

View file

@ -28,7 +28,7 @@
#include <stdarg.h>
#endif /* not __ASM__ */
#include <internal/arch/ke.h>
#include "arch/ke.h"
/* INTERNAL KERNEL FUNCTIONS ************************************************/