/* $Id: the-nt-kernel.h 1 1970-01-01 00:00:00Z vboxsync $ */ /** @file * InnoTek Portable Runtime - Include all necessary headers for the NT kernel. */ /* * Copyright (C) 2006 InnoTek Systemberatung GmbH * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation, * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE * distribution. VirtualBox OSE is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY of any kind. * * If you received this file as part of a commercial VirtualBox * distribution, then only the terms of your commercial VirtualBox * license agreement apply instead of the previous paragraph. */ #ifndef __the_nt_kernel_h__ #define __the_nt_kernel_h__ #include #if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK) # include # define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap # define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap # define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap __BEGIN_DECLS # include __END_DECLS # undef _InterlockedExchange # undef _InterlockedExchangeAdd # undef _InterlockedCompareExchange # undef _InterlockedAddLargeStatistic #else __BEGIN_DECLS # include __END_DECLS #endif #include #if !defined(__WIN32__) && !defined(__WIN64__) # error "__WIN32__ or __WIN64__ must be defined!" #endif #if !defined(__WIN__) # error "__WIN__ must be defined!" #endif #ifndef PAGE_OFFSET_MASK # define PAGE_OFFSET_MASK (PAGE_SIZE - 1) #endif /* * When targeting NT4 we have to undo some of the nice macros * installed by the later DDKs. */ #ifdef IPRT_TARGET_NT4 # undef ExAllocatePoolWithTag # define ExAllocatePoolWithTag(a,b,c) ExAllocatePool(a,b) # undef ExAllocatePoolWithQuotaTag # define ExAllocatePoolWithQuotaTag(a,b,c) ExAllocatePoolWithQuota(a,b) # undef ExAllocatePool NTKERNELAPI PVOID NTAPI ExAllocatePool(IN POOL_TYPE PoolType, IN SIZE_T NumberOfBytes); # undef ExFreePool NTKERNELAPI VOID NTAPI ExFreePool(IN PVOID P); #endif /* IPRT_TARGET_NT4 */ #endif