Changeset 51609 in vbox for trunk/src/VBox
- Timestamp:
- Jun 12, 2014 10:01:53 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94347
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.