Changeset 51609 in vbox for trunk/include
- Timestamp:
- Jun 12, 2014 10:01:53 AM (11 years ago)
- File:
-
- 1 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));
Note:
See TracChangeset
for help on using the changeset viewer.