mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
5748c28965
- NTIFS : tagTOKEN_TYPE -> _TOKEN_TYPE - Remove redundant MmFlushImageSection definition from winddk - Add _BUS_HANDLER struct forwarder - Guard ifssupp.h with #ifndef _NTIFS_ condition - Add WAIT_TYPE, LOGICAL and PLOGICAL definitions to ntdef.h and get rid of the incorrect ones in winddk.h - Group related *_POWER_* definitions - Move PKSYNCHRONIZE_ROUTINE and POOL_TYPE to the kernel types section - PDEVICE_OBJECT DeviceObject -> struct _DEVICE_OBJECT *DeviceObject in some cases - PIRP Irp -> struct _IRP *Irp in some cases svn path=/branches/header-work/; revision=45903
102 lines
2.7 KiB
C
102 lines
2.7 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel
|
|
* FILE: ntoskrnl/include/ntoskrnl.h
|
|
* PURPOSE: Main Kernel Header
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* ARM Bringup Hack */
|
|
#ifdef _M_ARM
|
|
#define DbgPrint DbgPrintEarly
|
|
#endif
|
|
|
|
/* Version Data */
|
|
#undef __MSVCRT__
|
|
#include <psdk/ntverp.h>
|
|
|
|
/* DDK/IFS/NDK Headers */
|
|
#define _REALLY_GET_CALLERS_CALLER
|
|
#include <excpt.h>
|
|
#include <ntdef.h>
|
|
#undef DECLSPEC_IMPORT
|
|
#define DECLSPEC_IMPORT
|
|
#include <ntifs.h>
|
|
#include <wdmguid.h>
|
|
#include <arc/arc.h>
|
|
#undef NTHALAPI
|
|
#define NTHALAPI __declspec(dllimport)
|
|
#include <ntndk.h>
|
|
#undef TEXT
|
|
#define TEXT(s) L##s
|
|
#include <regstr.h>
|
|
|
|
/* FIXME: Temporary until Winldr is used */
|
|
#include <rosldr.h>
|
|
|
|
/* C Headers */
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <malloc.h>
|
|
#include <wchar.h>
|
|
|
|
/* SEH support with PSEH */
|
|
#include <pseh/pseh2.h>
|
|
|
|
/* ReactOS Headers */
|
|
#include <reactos/buildno.h>
|
|
#include <reactos/bugcodes.h>
|
|
|
|
/* SetupLDR Support */
|
|
#include <arc/setupblk.h>
|
|
|
|
/* KD Support */
|
|
#define NOEXTAPI
|
|
#include <windbgkd.h>
|
|
#include <wdbgexts.h>
|
|
#include <kddll.h>
|
|
#ifndef _WINKD_
|
|
#include <reactos/rossym.h>
|
|
#endif
|
|
|
|
/* PNP GUIDs */
|
|
#include <umpnpmgr/sysguid.h>
|
|
|
|
/* Internal Headers */
|
|
#include "internal/ntoskrnl.h"
|
|
#include "config.h"
|
|
|
|
#include <reactos/probe.h>
|
|
#include "internal/probe.h"
|
|
|
|
//
|
|
// Define the internal versions of external and public global data
|
|
//
|
|
#define IoFileObjectType _IoFileObjectType
|
|
#define PsThreadType _PsThreadType
|
|
#define PsProcessType _PsProcessType
|
|
#define ExEventObjectType _ExEventObjectType
|
|
#define ExSemaphoreObjectType _ExSemaphoreObjectType
|
|
#define KdDebuggerEnabled _KdDebuggerEnabled
|
|
#define KdDebuggerNotPresent _KdDebuggerNotPresent
|
|
#define NlsOemLeadByteInfo _NlsOemLeadByteInfo
|
|
extern PUSHORT _NlsOemLeadByteInfo;
|
|
#define FsRtlLegalAnsiCharacterArray _FsRtlLegalAnsiCharacterArray
|
|
#undef LEGAL_ANSI_CHARACTER_ARRAY
|
|
#undef NLS_MB_CODE_PAGE_TAG
|
|
#undef NLS_OEM_LEAD_BYTE_INFO
|
|
#define LEGAL_ANSI_CHARACTER_ARRAY FsRtlLegalAnsiCharacterArray
|
|
#define NLS_MB_CODE_PAGE_TAG NlsMbOemCodePageTag
|
|
#define NLS_OEM_LEAD_BYTE_INFO _NlsOemLeadByteInfo
|
|
#undef KD_DEBUGGER_ENABLED
|
|
#undef KD_DEBUGGER_NOT_PRESENT
|
|
#define KD_DEBUGGER_ENABLED KdDebuggerEnabled
|
|
#define KD_DEBUGGER_NOT_PRESENT KdDebuggerNotPresent
|
|
#define HalDispatchTable _HalDispatchTable
|
|
#undef HALDISPATCH
|
|
#define HALDISPATCH (&HalDispatchTable)
|
|
#define ExRaiseStatus RtlRaiseStatus
|