VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/SUPR0IdcClientInternal.h@ 62490

Last change on this file since 62490 was 62490, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: SUPR0IdcClientInternal.h 62490 2016-07-22 18:41:49Z vboxsync $ */
2/** @file
3 * VirtualBox Support Driver - Internal header for the IDC client library.
4 */
5
6/*
7 * Copyright (C) 2008-2016 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)
41RT_C_DECLS_BEGIN
42# include <ntddk.h>
43RT_C_DECLS_END
44# pragma warning(default : 4163)
45# undef _InterlockedExchange
46# undef _InterlockedExchangeAdd
47# undef _InterlockedCompareExchange
48# undef _InterlockedAddLargeStatistic
49# else
50RT_C_DECLS_BEGIN
51# include <ntddk.h>
52RT_C_DECLS_END
53# endif
54#endif /* RT_OS_WINDOWS */
55
56
57/**
58 * The hidden part of SUPDRVIDCHANDLE.
59 */
60struct 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"
76AssertCompile(RT_SIZEOFMEMB(SUPDRVIDCHANDLE, apvPadding) >= sizeof(struct SUPDRVIDCHANDLEPRIVATE));
77
78RT_C_DECLS_BEGIN
79PSUPDRVIDCHANDLE supR0IdcGetHandleFromSession(PSUPDRVSESSION pSession);
80int VBOXCALL supR0IdcNativeOpen(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQCONNECT pReq);
81int VBOXCALL supR0IdcNativeClose(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQHDR pReq);
82int VBOXCALL supR0IdcNativeCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, PSUPDRVIDCREQHDR pReq);
83RT_C_DECLS_END
84
85#endif
86
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use