VirtualBox

source: vbox/trunk/src/VBox/Main/include/PCIRawDevImpl.h@ 70772

Last change on this file since 70772 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1/* $Id: PCIRawDevImpl.h 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * VirtualBox Driver interface to raw PCI device
4 */
5
6/*
7 * Copyright (C) 2010-2017 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
18#ifndef ____H_PCIRAWDEV
19#define ____H_PCIRAWDEV
20
21#include "VirtualBoxBase.h"
22#include <VBox/vmm/pdmdrv.h>
23
24class Console;
25struct DRVMAINPCIRAWDEV;
26
27class PCIRawDev
28{
29 public:
30 PCIRawDev(Console *console);
31 virtual ~PCIRawDev();
32
33 static const PDMDRVREG DrvReg;
34 struct DRVMAINPCIRAWDEV *mpDrv;
35
36 Console *getParent() const
37 {
38 return mParent;
39 }
40
41 private:
42 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID);
43 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
44 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
45 static DECLCALLBACK(int) drvDeviceConstructComplete(PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
46 uint32_t uHostPCIAddress, uint32_t uGuestPCIAddress,
47 int rc);
48
49
50 Console * const mParent;
51};
52
53#endif // !____H_PCIRAWDEV
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use