VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxBFE/VMMDev.h@ 35740

Last change on this file since 35740 was 35346, checked in by vboxsync, 13 years ago

VMM reorg: Moving the public include files from include/VBox to include/VBox/vmm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/* $Id: VMMDev.h 35346 2010-12-27 16:13:13Z vboxsync $ */
2/** @file
3 * VBox frontends: Basic Frontend (BFE):
4 * Declaration of VMMDev: driver interface to VMM device
5 */
6
7/*
8 * Copyright (C) 2006-2007 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_VMMDEV
20#define ____H_VMMDEV
21
22#include <VBox/vmm/pdm.h>
23
24class VMMDev
25{
26public:
27 VMMDev();
28 ~VMMDev();
29 static const PDMDRVREG DrvReg;
30
31 /** Pointer to the associated VMMDev driver. */
32 struct DRVMAINVMMDEV *mpDrv;
33
34 bool fSharedFolderActive;
35 bool isShFlActive()
36 {
37 return fSharedFolderActive;
38 }
39
40 PPDMIVMMDEVPORT getVMMDevPort();
41
42 int hgcmLoadService (const char *pszServiceLibrary, const char *pszServiceName);
43 int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
44
45private:
46 static DECLCALLBACK(void) UpdateGuestStatus(PPDMIVMMDEVCONNECTOR pInterface, const VBoxGuestStatus *guestStatus);
47 static DECLCALLBACK(void) UpdateGuestInfo(PPDMIVMMDEVCONNECTOR pInterface, const VBoxGuestInfo *guestInfo);
48 static DECLCALLBACK(void) UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
49 static DECLCALLBACK(void) UpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
50 static DECLCALLBACK(void) UpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
51 uint32_t xHot, uint32_t yHot,
52 uint32_t width, uint32_t height,
53 void *pShape);
54 static DECLCALLBACK(int) VideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t display, uint32_t width, uint32_t height,
55 uint32_t bpp, bool *fSupported);
56 static DECLCALLBACK(int) GetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction);
57 static DECLCALLBACK(int) QueryBalloonSize(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pu32BalloonSize);
58
59 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID);
60 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
61 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
62};
63
64extern VMMDev *gVMMDev;
65
66#endif // !____H_VMMDEV
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use