Changeset 35989 in vbox for trunk/include/VBox
- Timestamp:
- Feb 15, 2011 7:55:27 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70060
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r35968 r35989 242 242 uint32_t mouseFeatures; 243 243 /** Mouse x position. */ 244 uint32_t pointerXPos;244 int32_t pointerXPos; 245 245 /** Mouse y position. */ 246 uint32_t pointerYPos;246 int32_t pointerYPos; 247 247 } VMMDevReqMouseStatus; 248 248 AssertCompileSize(VMMDevReqMouseStatus, 24+12); -
trunk/include/VBox/vmm/pdmifs.h
r35560 r35989 1971 1971 * @param pyAbs Pointer of result value, can be NULL 1972 1972 */ 1973 DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, uint32_t *pxAbs, uint32_t *pyAbs));1973 DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs)); 1974 1974 1975 1975 /** … … 1981 1981 * @param yAbs New absolute Y position 1982 1982 */ 1983 DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, uint32_t xAbs, uint32_t yAbs));1983 DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs)); 1984 1984 1985 1985 /**
Note:
See TracChangeset
for help on using the changeset viewer.