Changeset 62720 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Jul 29, 2016 10:14:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbMon.cpp
r62719 r62720 3 3 * VBox USB Monitor 4 4 */ 5 5 6 /* 6 7 * Copyright (C) 2011-2016 Oracle Corporation … … 15 16 */ 16 17 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 17 22 #include "VBoxUsbMon.h" 18 23 #include "../cmn/VBoxUsbIdc.h" … … 22 27 #include <stdio.h> 23 28 29 30 /********************************************************************************************************************************* 31 * Defined Constants And Macros * 32 *********************************************************************************************************************************/ 24 33 /* 25 34 * Note: Must match the VID & PID in the USB driver .inf file!! … … 41 50 #define szDeviceTextDescription L"VirtualBox USB" 42 51 52 53 #define VBOXUSBMON_MEMTAG 'MUBV' 54 55 56 /********************************************************************************************************************************* 57 * Structures and Typedefs * 58 *********************************************************************************************************************************/ 43 59 typedef struct VBOXUSBMONINS 44 60 { … … 92 108 } VBOXUSBMONGLOBALS, *PVBOXUSBMONGLOBALS; 93 109 110 111 /********************************************************************************************************************************* 112 * Global Variables * 113 *********************************************************************************************************************************/ 94 114 static VBOXUSBMONGLOBALS g_VBoxUsbMonGlobals; 95 115 96 #define VBOXUSBMON_MEMTAG 'MUBV' 116 97 117 98 118 PVOID VBoxUsbMonMemAlloc(SIZE_T cbBytes)
Note:
See TracChangeset
for help on using the changeset viewer.