Changeset 46932 in vbox for trunk/src/VBox/Devices/Input/testcase/tstUsbMouse.cpp
- Timestamp:
- Jul 3, 2013 1:02:28 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/testcase/tstUsbMouse.cpp
r46817 r46932 43 43 /** Is absolute mode currently supported? */ 44 44 bool fAbs; 45 /** Is multi-touch mode currently supported? */ 46 bool fMT; 45 47 } DRVTSTMOUSE, *PDRVTSTMOUSE; 46 48 … … 100 102 */ 101 103 static DECLCALLBACK(void) tstMouseReportModes(PPDMIMOUSECONNECTOR pInterface, 102 bool fRel, bool fAbs )104 bool fRel, bool fAbs, bool fMT) 103 105 { 104 106 PDRVTSTMOUSE pDrv = RT_FROM_MEMBER(pInterface, DRVTSTMOUSE, IConnector); 105 107 pDrv->fRel = fRel; 106 108 pDrv->fAbs = fAbs; 109 pDrv->fMT = fMT; 107 110 } 108 111
Note:
See TracChangeset
for help on using the changeset viewer.