Changeset 51609 in vbox
- Timestamp:
- Jun 12, 2014 10:01:53 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94347
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r51539 r51609 378 378 * supported by the driver 379 379 * 380 * @param pInterface Pointer to th e this interface.380 * @param pInterface Pointer to this interface structure. 381 381 * @param fRelative Whether relative mode is currently supported. 382 382 * @param fAbsolute Whether absolute mode is currently supported. … … 384 384 */ 385 385 DECLR3CALLBACKMEMBER(void, pfnReportModes,(PPDMIMOUSECONNECTOR pInterface, bool fRelative, bool fAbsolute, bool fMultiTouch)); 386 387 /** 388 * Flushes the mouse queue if it contains pending events. 389 * 390 * @param pInterface Pointer to this interface structure. 391 */ 392 DECLR3CALLBACKMEMBER(void, pfnFlushQueue,(PPDMIMOUSECONNECTOR pInterface)); 386 393 387 394 } PDMIMOUSECONNECTOR; … … 456 463 * Notifies the the downstream driver about an LED change initiated by the guest. 457 464 * 458 * @param pInterface Pointer to th e this interface.465 * @param pInterface Pointer to this interface structure. 459 466 * @param enmLeds The new led mask. 460 467 */ … … 464 471 * Notifies the the downstream driver of changes in driver state. 465 472 * 466 * @param pInterface Pointer to th e this interface.473 * @param pInterface Pointer to this interface structure. 467 474 * @param fActive Whether interface wishes to get "focus". 468 475 */ … … 472 479 * Flushes the keyboard queue if it contains pending events. 473 480 * 474 * @param pInterface Pointer to th e this interface.481 * @param pInterface Pointer to this interface structure. 475 482 */ 476 483 DECLR3CALLBACKMEMBER(void, pfnFlushQueue,(PPDMIKEYBOARDCONNECTOR pInterface)); -
trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp
r47571 r51609 201 201 PDRVMOUSEQUEUE pDrv = PPDMIMOUSECONNECTOR_2_DRVMOUSEQUEUE(pInterface); 202 202 pDrv->pDownConnector->pfnReportModes(pDrv->pDownConnector, fRel, fAbs, fMT); 203 } 204 205 206 /** 207 * Flush the mouse queue if there are pending events. 208 * 209 * @param pInterface Pointer to the mouse connector interface structure. 210 */ 211 static DECLCALLBACK(void) drvMouseFlushQueue(PPDMIMOUSECONNECTOR pInterface) 212 { 213 PDRVMOUSEQUEUE pDrv = PPDMIMOUSECONNECTOR_2_DRVMOUSEQUEUE(pInterface); 214 215 AssertPtr(pDrv->pQueue); 216 PDMQueueFlushIfNecessary(pDrv->pQueue); 203 217 } 204 218
Note:
See TracChangeset
for help on using the changeset viewer.