VirtualBox

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

Last change on this file since 43394 was 42551, checked in by vboxsync, 12 years ago

Main: big API naming cleanup, use all caps acronyms everywhere, including SDK docs
Frontends/VBoxManage: implement guestcontrol execute for new API, disabled by default

  • 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 42551 2012-08-02 16:44:39Z vboxsync $ */
2/** @file
3 * VirtualBox Driver interface to raw PCI device
4 */
5
6/*
7 * Copyright (C) 2010-2012 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(void) drvReset(PPDMDRVINS pDrvIns);
46 static DECLCALLBACK(int) drvDeviceConstructComplete(PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
47 uint32_t uHostPCIAddress, uint32_t uGuestPCIAddress,
48 int rc);
49
50
51 Console * const mParent;
52};
53
54#endif // !____H_PCIRAWDEV
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