Changeset 37423 in vbox for trunk/src/VBox/Additions/WINNT/Mouse
- Timestamp:
- Jun 12, 2011 6:37:56 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Mouse/NT5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMF.h
r37225 r37423 36 36 #define IOCTL_INTERNAL_MOUSE_CONNECT CTL_CODE(FILE_DEVICE_MOUSE, 0x0080, METHOD_NEITHER, FILE_ANY_ACCESS) 37 37 38 typedef VOID (*PFNSERVICECB)(PDEVICE_OBJECT DeviceObject, PMOUSE_INPUT_DATA InputDataStart, 38 typedef VOID (*PFNSERVICECB)(PDEVICE_OBJECT DeviceObject, PMOUSE_INPUT_DATA InputDataStart, 39 39 PMOUSE_INPUT_DATA InputDataEnd, PULONG InputDataConsumed); 40 40 -
trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMFDriver.cpp
r37225 r37423 145 145 146 146 static void 147 VBoxServiceCB(PDEVICE_OBJECT DeviceObject, PMOUSE_INPUT_DATA InputDataStart, 147 VBoxServiceCB(PDEVICE_OBJECT DeviceObject, PMOUSE_INPUT_DATA InputDataStart, 148 148 PMOUSE_INPUT_DATA InputDataEnd, PULONG InputDataConsumed) 149 149 { -
trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMFInternal.cpp
r37226 r37423 366 366 367 367 LOG(("Number of descriptors: %d", pResourceList->Count)); 368 368 369 369 /* Check if device claims IO port 0x60 or int12 */ 370 370 for (ULONG i=0; i<pResourceList->Count; ++i) … … 429 429 { 430 430 LOGF_ENTER(); 431 431 432 432 if (!vboxIsVBGLInited()) 433 433 { … … 486 486 } 487 487 } 488 488 489 489 LOGF_LEAVE(); 490 490 }
Note:
See TracChangeset
for help on using the changeset viewer.