Changeset 10562 in vbox for trunk/src/VBox
- Timestamp:
- Jul 12, 2008 1:22:00 AM (16 years ago)
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/xgraphics/vboxutils_68.c
r10555 r10562 122 122 } 123 123 #else 124 /** @todo r=bird: Michael, I thought we decided a long time ago that all these should be replaced by VbglR3. I assume this is just a leftover... */ 124 125 err = ioctl (pVBox->vbox_fd, VBOXGUEST_IOCTL_VMMREQUEST(0), hdrp); 125 126 #endif … … 149 150 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, 150 151 "Unable to determine whether the virtual machine supports mouse pointer integration - request initialization failed with return code %d\n", rc); 152 /** @todo r=bird: Michael, ditto. */ 151 153 if ( RT_SUCCESS(vrc) 152 && (ioctl(pVBox->vbox_fd, VBOXGUEST_IOCTL_VMMREQUEST( 0), (void*)&req) < 0))154 && (ioctl(pVBox->vbox_fd, VBOXGUEST_IOCTL_VMMREQUEST(sizeof(req)), (void*)&req) < 0)) 153 155 { 154 156 vrc = VERR_FILE_IO_ERROR; … … 819 821 memset (pm, 0xFF, mask_size); 820 822 821 /** 823 /** 822 824 * The additions driver must provide the AND mask for alpha cursors. The host frontend 823 825 * which can handle alpha channel, will ignore the AND mask and draw an alpha cursor. -
trunk/src/VBox/Additions/x11/xmouse/VBoxUtils_68.c
r10561 r10562 122 122 req.pointerXPos = 0; 123 123 req.pointerYPos = 0; 124 /** @todo r=bird: Michael, I thought we decided a long time ago that all these should be replaced by VbglR3. I assume this is just a leftover... */ 124 125 if (ioctl(g_vboxaddHandle, VBOXGUEST_IOCTL_VMMREQUEST(sizeof(req)), (void*)&req) < 0) 125 126 { … … 146 147 return 1; 147 148 /* perform VMM request */ 149 /** @todo r=bird: Michael, ditto. */ 148 150 if (ioctl(g_vboxaddHandle, VBOXGUEST_IOCTL_VMMREQUEST(vmmdevGetRequestSize(VMMDevReq_GetMouseStatus)), (void*)g_vmmreqMouseStatus) >= 0) 149 151 { … … 181 183 req.pointerXPos = 0; 182 184 req.pointerYPos = 0; 185 /** @todo r=bird: Michael, ditto. */ 183 186 if (ioctl(g_vboxaddHandle, VBOXGUEST_IOCTL_VMMREQUEST(sizeof(req)), (void*)&req) < 0) 184 187 {
Note:
See TracChangeset
for help on using the changeset viewer.