1 | /* $Id: SUPR0IdcClientInternal.h 56293 2015-06-09 14:23:56Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Support Driver - Internal header for the IDC client library.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2015 Oracle Corporation
|
---|
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 |
|
---|
27 | #ifndef ___SUPR0IdcClientInternal_h__
|
---|
28 | #define ___SUPR0IdcClientInternal_h__
|
---|
29 |
|
---|
30 | #include <VBox/types.h>
|
---|
31 | #include <iprt/assert.h>
|
---|
32 |
|
---|
33 | #ifdef RT_OS_WINDOWS
|
---|
34 | # if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK)
|
---|
35 | # include <iprt/asm.h>
|
---|
36 | # define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
|
---|
37 | # define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
|
---|
38 | # define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
|
---|
39 | # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
|
---|
40 | # pragma warning(disable : 4163)
|
---|
41 | RT_C_DECLS_BEGIN
|
---|
42 | # include <ntddk.h>
|
---|
43 | RT_C_DECLS_END
|
---|
44 | # pragma warning(default : 4163)
|
---|
45 | # undef _InterlockedExchange
|
---|
46 | # undef _InterlockedExchangeAdd
|
---|
47 | # undef _InterlockedCompareExchange
|
---|
48 | # undef _InterlockedAddLargeStatistic
|
---|
49 | # else
|
---|
50 | RT_C_DECLS_BEGIN
|
---|
51 | # include <ntddk.h>
|
---|
52 | RT_C_DECLS_END
|
---|
53 | # endif
|
---|
54 | #endif /* RT_OS_WINDOWS */
|
---|
55 |
|
---|
56 |
|
---|
57 | /**
|
---|
58 | * The hidden part of SUPDRVIDCHANDLE.
|
---|
59 | */
|
---|
60 | struct SUPDRVIDCHANDLEPRIVATE
|
---|
61 | {
|
---|
62 | /** Pointer to the session handle. */
|
---|
63 | PSUPDRVSESSION pSession;
|
---|
64 | # ifdef RT_OS_WINDOWS
|
---|
65 | /** Pointer to the NT device object. */
|
---|
66 | PDEVICE_OBJECT pDeviceObject;
|
---|
67 | /** Pointer to the NT file object. */
|
---|
68 | PFILE_OBJECT pFileObject;
|
---|
69 | # endif
|
---|
70 | };
|
---|
71 | /** Indicate that the structure is present. */
|
---|
72 | #define SUPDRVIDCHANDLEPRIVATE_DECLARED 1
|
---|
73 |
|
---|
74 | #include <VBox/sup.h>
|
---|
75 | #include "SUPDrvIDC.h"
|
---|
76 | AssertCompile(RT_SIZEOFMEMB(SUPDRVIDCHANDLE, apvPadding) >= sizeof(struct SUPDRVIDCHANDLEPRIVATE));
|
---|
77 |
|
---|
78 | RT_C_DECLS_BEGIN
|
---|
79 | PSUPDRVIDCHANDLE supR0IdcGetHandleFromSession(PSUPDRVSESSION pSession);
|
---|
80 | int VBOXCALL supR0IdcNativeOpen(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQCONNECT pReq);
|
---|
81 | int VBOXCALL supR0IdcNativeClose(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQHDR pReq);
|
---|
82 | int VBOXCALL supR0IdcNativeCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, PSUPDRVIDCREQHDR pReq);
|
---|
83 | RT_C_DECLS_END
|
---|
84 |
|
---|
85 | #endif
|
---|
86 |
|
---|