VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.h@ 4225

Last change on this file since 4225 was 4071, checked in by vboxsync, 18 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/** @file
2 *
3 * VBox frontends: Basic Frontend (BFE):
4 * Declaration of VMMDev: driver interface to VMM device
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_VMMDEV
20#define ____H_VMMDEV
21
22#include <VBox/pdm.h>
23
24class VMMDev
25{
26public:
27 VMMDev() : mpDrv(NULL) {};
28 static const PDMDRVREG DrvReg;
29
30 /** Pointer to the associated VMMDev driver. */
31 struct DRVMAINVMMDEV *mpDrv;
32
33 PPDMIVMMDEVPORT getVMMDevPort();
34
35 void QueryMouseCapabilities(uint32_t *pMouseCaps);
36 int SetMouseCapabilities(uint32_t mouseCaps);
37 int SetAbsoluteMouse(uint32_t mouseXAbs, uint32_t mouseYAbs);
38
39private:
40 static DECLCALLBACK(void) UpdateGuestVersion(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *guestInfo);
41 static DECLCALLBACK(void) UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
42 static DECLCALLBACK(void) UpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
43 static DECLCALLBACK(void) UpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
44 uint32_t xHot, uint32_t yHot,
45 uint32_t width, uint32_t height,
46 void *pShape);
47 static DECLCALLBACK(int) VideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t width, uint32_t height,
48 uint32_t bpp, bool *fSupported);
49 static DECLCALLBACK(int) GetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction);
50
51 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
52 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
53 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
54};
55
56extern VMMDev *gVMMDev;
57
58#endif // ____H_VMMDEV
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette