VirtualBox

Changeset 3584 in vbox for trunk/src/VBox/Frontends/VBoxBFE


Ignore:
Timestamp:
Jul 12, 2007 2:10:58 PM (17 years ago)
Author:
vboxsync
Message:

Fixed typo and added UpdateGuestCapabilities support to VBoxBFE

Location:
trunk/src/VBox/Frontends/VBoxBFE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp

    r3564 r3584  
    104104
    105105/**
     106 * Update the guest additions capabilities.
     107 * This is called when the guest additions capabilities change. The new capabilities
     108 * are given and the connector should update its internal state.
     109 *
     110 * @param   pInterface          Pointer to this interface.
     111 * @param   newCapabilities     New capabilities.
     112 * @thread  The emulation thread.
     113 */
     114DECLCALLBACK(void) VMMDev::UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities)
     115{
     116    return;
     117}
     118
     119/**
    106120 * Update the mouse capabilities.
    107121 * This is called when the mouse capabilities change. The new capabilities
     
    277291
    278292    pData->Connector.pfnUpdateGuestVersion      = VMMDev::UpdateGuestVersion;
     293    pData->Connector.pfnUpdateGuestCapabilities = VMMDev::UpdateGuestCapabilities;
    279294    pData->Connector.pfnUpdateMouseCapabilities = VMMDev::UpdateMouseCapabilities;
    280295    pData->Connector.pfnUpdatePointerShape      = VMMDev::UpdatePointerShape;
  • trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.h

    r2981 r3584  
    4343private:
    4444    static DECLCALLBACK(void)   UpdateGuestVersion(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *guestInfo);
     45    static DECLCALLBACK(void)   UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
    4546    static DECLCALLBACK(void)   UpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities);
    4647    static DECLCALLBACK(void)   UpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
Note: See TracChangeset for help on using the changeset viewer.

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