VirtualBox

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

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

SUPDrv: warnings

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: SUPR0IdcClientInternal.h 62664 2016-07-28 23:30:23Z 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# include <iprt/nt/ntddk.h>
35#endif
36
37
38/**
39 * The hidden part of SUPDRVIDCHANDLE.
40 */
41struct SUPDRVIDCHANDLEPRIVATE
42{
43 /** Pointer to the session handle. */
44 PSUPDRVSESSION pSession;
45# ifdef RT_OS_WINDOWS
46 /** Pointer to the NT device object. */
47 PDEVICE_OBJECT pDeviceObject;
48 /** Pointer to the NT file object. */
49 PFILE_OBJECT pFileObject;
50# endif
51};
52/** Indicate that the structure is present. */
53#define SUPDRVIDCHANDLEPRIVATE_DECLARED 1
54
55#include <VBox/sup.h>
56#include "SUPDrvIDC.h"
57AssertCompile(RT_SIZEOFMEMB(SUPDRVIDCHANDLE, apvPadding) >= sizeof(struct SUPDRVIDCHANDLEPRIVATE));
58
59RT_C_DECLS_BEGIN
60PSUPDRVIDCHANDLE supR0IdcGetHandleFromSession(PSUPDRVSESSION pSession);
61int VBOXCALL supR0IdcNativeOpen(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQCONNECT pReq);
62int VBOXCALL supR0IdcNativeClose(PSUPDRVIDCHANDLE pHandle, PSUPDRVIDCREQHDR pReq);
63int VBOXCALL supR0IdcNativeCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, PSUPDRVIDCREQHDR pReq);
64RT_C_DECLS_END
65
66#endif
67
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use