Changeset 62717 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB/win
- Timestamp:
- Jul 29, 2016 10:03:37 PM (8 years ago)
- Location:
- trunk/src/VBox/HostDrivers/VBoxUSB/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/cmn/VBoxDrvTool.cpp
r62714 r62717 80 80 RtlInitUnicodeString(&RtlStr, pName); 81 81 NTSTATUS Status = ZwQueryValueKey(hKey, 82 &RtlStr,83 KeyValuePartialInformation,84 &Buf.Info,85 sizeof(Buf),86 &cbBuf);82 &RtlStr, 83 KeyValuePartialInformation, 84 &Buf.Info, 85 sizeof(Buf), 86 &cbBuf); 87 87 if (Status == STATUS_SUCCESS) 88 88 { -
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbHook.cpp
r62490 r62717 3 3 * Driver Dispatch Table Hooking API 4 4 */ 5 5 6 /* 6 7 * Copyright (C) 2011-2016 Oracle Corporation … … 14 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 15 16 */ 17 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 16 22 #include "VBoxUsbMon.h" 17 23 24 25 /********************************************************************************************************************************* 26 * Defined Constants And Macros * 27 *********************************************************************************************************************************/ 18 28 #define VBOXUSBHOOK_MEMTAG 'HUBV' 29 19 30 20 31 NTSTATUS VBoxUsbHookInstall(PVBOXUSBHOOK_ENTRY pHook) … … 132 143 } 133 144 134 NTSTATUS VBoxUsbHookRequestMoreProcessingRequired(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp, PVBOXUSBHOOK_REQUEST pRequest) 145 NTSTATUS VBoxUsbHookRequestMoreProcessingRequired(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp, 146 PVBOXUSBHOOK_REQUEST pRequest) 135 147 { 148 RT_NOREF3(pHook, pDevObj, pIrp); 136 149 Assert(!pRequest->bCompletionStopped); 137 150 pRequest->bCompletionStopped = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.