Changeset 11814 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Aug 29, 2008 12:47:44 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r11752 r11814 186 186 # 187 187 SUPR0IdcClient_TEMPLATE = VBOXR0DRV 188 SUPR0IdcClient_DEFS = IN_RT_R0 IN_SUP_R0 188 SUPR0IdcClient_DEFS = IN_RT_R0 IN_SUP_R0 IN_SUP_STATIC 189 189 SUPR0IdcClient_SDKS.win = W2K3DDK WINPSDKINCS 190 190 SUPR0IdcClient_SOURCES.$(KBUILD_TARGET) = \ -
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r10731 r11814 137 137 pDrvObj->MajorFunction[IRP_MJ_CLOSE] = VBoxDrvNtClose; 138 138 pDrvObj->MajorFunction[IRP_MJ_DEVICE_CONTROL] = VBoxDrvNtDeviceControl; 139 #if 0 /** @todo test IDC on windows. */139 //#if 0 /** @todo test IDC on windows. */ 140 140 pDrvObj->MajorFunction[IRP_MJ_INTERNAL_DEVICE_CONTROL] = VBoxDrvNtInternalDeviceControl; 141 #endif141 //#endif 142 142 pDrvObj->MajorFunction[IRP_MJ_READ] = VBoxDrvNtNotSupportedStub; 143 143 pDrvObj->MajorFunction[IRP_MJ_WRITE] = VBoxDrvNtNotSupportedStub; … … 232 232 pFileObj->FsContext = NULL; 233 233 PSUPDRVSESSION pSession; 234 #if 0 /** @todo check if this works, consider OBJ_KERNEL_HANDLE too. */234 //#if 0 /** @todo check if this works, consider OBJ_KERNEL_HANDLE too. */ 235 235 bool fUser = pIrp->RequestorMode != KernelMode; 236 #else237 bool fUser = true;238 #endif236 //#else 237 // bool fUser = true; 238 //#endif 239 239 int rc = supdrvCreateSession(pDevExt, fUser, &pSession); 240 240 if (!rc)
Note:
See TracChangeset
for help on using the changeset viewer.