Changeset 60068 in vbox for trunk/src/VBox/Main/src-server/HostImpl.cpp
- Timestamp:
- Mar 16, 2016 7:43:56 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106059
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r60067 r60068 1704 1704 1705 1705 return S_OK; 1706 }1707 1708 HRESULT Host::addUSBDeviceSource(const com::Utf8Str &aBackend, const com::Utf8Str &aId, const com::Utf8Str &aAddress,1709 const std::vector<com::Utf8Str> &aPropertyNames, const std::vector<com::Utf8Str> &aPropertyValues)1710 {1711 #ifdef VBOX_WITH_USB1712 /* The USB proxy service will do the locking. */1713 return m->pUSBProxyService->addUSBDeviceSource(aBackend, aId, aAddress, aPropertyNames, aPropertyValues);1714 #else1715 ReturnComNotImplemented();1716 #endif1717 }1718 1719 HRESULT Host::removeUSBDeviceSource(const com::Utf8Str &aId)1720 {1721 #ifdef VBOX_WITH_USB1722 /* The USB proxy service will do the locking. */1723 return m->pUSBProxyService->removeUSBDeviceSource(aId);1724 #else1725 ReturnComNotImplemented();1726 #endif1727 1706 } 1728 1707
Note:
See TracChangeset
for help on using the changeset viewer.