Changeset 8744 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 9, 2008 2:51:58 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30699
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostImpl.h
r8666 r8744 28 28 # include "USBDeviceFilterImpl.h" 29 29 # include "USBProxyService.h" 30 # include "VirtualBoxImpl.h" 30 31 #else 31 32 class USBProxyService; … … 106 107 107 108 #ifdef VBOX_WITH_USB 108 /** @name To be moved, they don't belong here. 109 * @{ */ 110 void onUSBDeviceAttached (HostUSBDevice *aDevice); 111 void onUSBDeviceDetached (HostUSBDevice *aDevice); 112 void onUSBDeviceStateChanged(HostUSBDevice *aDevice, bool aRunFilters, SessionMachine *aIgnoreMachine); 113 /** @} */ 109 typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList; 110 111 /** Must be called from under this object's lock. */ 112 USBProxyService *usbProxyService() { return mUSBProxyService; } 114 113 115 114 HRESULT onUSBDeviceFilterChange (HostUSBDeviceFilter *aFilter, BOOL aActiveChanged = FALSE); 116 117 /* must be called from under this object's lock */ 118 USBProxyService *usbProxyService() { return mUSBProxyService; } 119 #else /* !VBOX_WITH_USB */ 120 USBProxyService *usbProxyService() { return NULL; } 115 void getUSBFilters(USBDeviceFilterList *aGlobalFiltes, VirtualBox::SessionMachineVector *aMachines); 116 HRESULT checkUSBProxyService(); 121 117 #endif /* !VBOX_WITH_USB */ 122 123 HRESULT checkUSBProxyService();124 118 125 119 #ifdef RT_OS_WINDOWS … … 151 145 : NULL; 152 146 } 153 154 public: //temporary - will be moved soon.155 HRESULT applyAllUSBFilters (ComObjPtr <HostUSBDevice> &aDevice,156 SessionMachine *aMachine = NULL);157 158 bool applyMachineUSBFilters (SessionMachine *aMachine,159 ComObjPtr <HostUSBDevice> &aDevice);160 private: //temporary161 147 #endif /* VBOX_WITH_USB */ 162 148 … … 176 162 177 163 #ifdef VBOX_WITH_USB 178 typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;179 164 USBDeviceFilterList mUSBDeviceFilters; 180 165 -
trunk/src/VBox/Main/include/VirtualBoxBase.h
r8709 r8744 1686 1686 // child's uninit() from under the children map lock should not produce 1687 1687 // dead-locks any more). 1688 Assert (!child->isWriteLockOnCurrentThread() );1688 Assert (!child->isWriteLockOnCurrentThread() || child->lockHandle() == lockHandle()); 1689 1689 removeDependentChild (ComPtr <IUnknown> (child)); 1690 1690 }
Note:
See TracChangeset
for help on using the changeset viewer.