Changeset 3758 in vbox for trunk/src/VBox/Main/include/USBProxyService.h
- Timestamp:
- Jul 21, 2007 8:55:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/USBProxyService.h
r3668 r3758 42 42 * @return ID of the inserted filter 43 43 */ 44 #ifdef VBOX_WITH_USBFILTER 45 virtual void *insertFilter (PCUSBFILTER aFilter); 46 #else 44 47 virtual void *insertFilter (IUSBDeviceFilter *aFilter); 48 #endif 45 49 46 50 /** 47 51 * A filter was removed. 48 52 * 49 * @param aI DID of the filter to remove50 */ 51 virtual void removeFilter (void *aI D);53 * @param aId ID of the filter to remove 54 */ 55 virtual void removeFilter (void *aId); 52 56 53 57 /** … … 260 264 ~USBProxyServiceDarwin(); 261 265 266 #ifdef VBOX_WITH_USBFILTER 267 virtual void *insertFilter (PCUSBFILTER aFilter); 268 virtual void removeFilter (void *aId); 269 #endif 270 262 271 virtual int captureDevice (HostUSBDevice *aDevice); 263 272 virtual int holdDevice (HostUSBDevice *aDevice); … … 284 293 /** Whether we've got a fake async event and should return without entering the runloop. */ 285 294 bool volatile mFakeAsync; 295 /** Whether we've successfully initialized the USBLib and should call USBLibTerm in the destructor. */ 296 bool mUSBLibInitialized; 286 297 }; 287 298 # endif /* RT_OS_DARWIN */
Note:
See TracChangeset
for help on using the changeset viewer.