Changeset 3584 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Jul 12, 2007 2:10:58 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r3564 r3584 104 104 105 105 /** 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 */ 114 DECLCALLBACK(void) VMMDev::UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities) 115 { 116 return; 117 } 118 119 /** 106 120 * Update the mouse capabilities. 107 121 * This is called when the mouse capabilities change. The new capabilities … … 277 291 278 292 pData->Connector.pfnUpdateGuestVersion = VMMDev::UpdateGuestVersion; 293 pData->Connector.pfnUpdateGuestCapabilities = VMMDev::UpdateGuestCapabilities; 279 294 pData->Connector.pfnUpdateMouseCapabilities = VMMDev::UpdateMouseCapabilities; 280 295 pData->Connector.pfnUpdatePointerShape = VMMDev::UpdatePointerShape; -
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.h
r2981 r3584 43 43 private: 44 44 static DECLCALLBACK(void) UpdateGuestVersion(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *guestInfo); 45 static DECLCALLBACK(void) UpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities); 45 46 static DECLCALLBACK(void) UpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities); 46 47 static DECLCALLBACK(void) UpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
Note:
See TracChangeset
for help on using the changeset viewer.