VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/nt/the-nt-kernel.h@ 20364

Last change on this file since 20364 was 20364, checked in by vboxsync, 15 years ago

IPRT: BEGIN_DECLS -> RT_BEGIN_DECLS; END_DECLS -> RT_END_DECLS.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1/* $Id: the-nt-kernel.h 20364 2009-06-08 00:17:43Z vboxsync $ */
2/** @file
3 * IPRT - Include all necessary headers for the NT kernel.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31#ifndef ___the_nt_kernel_h
32#define ___the_nt_kernel_h
33
34#include <iprt/cdefs.h>
35
36#if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK)
37# include <iprt/asm.h>
38# define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
39# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
40# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
41# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
42# pragma warning(disable : 4163)
43RT_BEGIN_DECLS
44# include <ntddk.h>
45RT_END_DECLS
46# pragma warning(default : 4163)
47# undef _InterlockedExchange
48# undef _InterlockedExchangeAdd
49# undef _InterlockedCompareExchange
50# undef _InterlockedAddLargeStatistic
51#else
52RT_BEGIN_DECLS
53# include <ntddk.h>
54RT_END_DECLS
55#endif
56
57#include <memory.h>
58#if !defined(RT_OS_WINDOWS)
59# error "RT_OS_WINDOWS must be defined!"
60#endif
61
62#include <iprt/param.h>
63#ifndef PAGE_OFFSET_MASK
64# define PAGE_OFFSET_MASK (PAGE_SIZE - 1)
65#endif
66
67/*
68 * When targeting NT4 we have to undo some of the nice macros
69 * installed by the later DDKs.
70 */
71#ifdef IPRT_TARGET_NT4
72# undef ExAllocatePoolWithTag
73# define ExAllocatePoolWithTag(a,b,c) ExAllocatePool(a,b)
74# undef ExAllocatePoolWithQuotaTag
75# define ExAllocatePoolWithQuotaTag(a,b,c) ExAllocatePoolWithQuota(a,b)
76# undef ExAllocatePool
77 NTKERNELAPI PVOID NTAPI ExAllocatePool(IN POOL_TYPE PoolType, IN SIZE_T NumberOfBytes);
78# undef ExFreePool
79 NTKERNELAPI VOID NTAPI ExFreePool(IN PVOID P);
80#endif /* IPRT_TARGET_NT4 */
81
82/** @def IPRT_NT_POOL_TAG
83 * Tag to use with the NT Pool APIs.
84 * In memory and in the various windbg tool it appears in the reverse order of
85 * what it is given as here, so it'll read "IPRT".
86 */
87#define IPRT_NT_POOL_TAG 'TRPI'
88
89#endif
90
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette