Changeset 81682 in vbox for trunk/src/VBox/Main/src-server/HostImpl.cpp
- Timestamp:
- Nov 5, 2019 7:08:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r81605 r81682 975 975 * extended error info to indicate that USB is simply not available 976 976 * (w/o treating it as a failure), for example, as in OSE. */ 977 NOREF(aUSBDevices); 978 # ifndef RT_OS_WINDOWS 979 NOREF(aUSBDevices); 980 # endif 977 RT_NOREF(aUSBDevices); 981 978 ReturnComNotImplemented(); 982 979 #endif … … 1032 1029 * extended error info to indicate that USB is simply not available 1033 1030 * (w/o treating it as a failure), for example, as in OSE. */ 1034 NOREF(aUSBDeviceFilters); 1035 # ifndef RT_OS_WINDOWS 1036 NOREF(aUSBDeviceFilters); 1037 # endif 1031 RT_NOREF(aUSBDeviceFilters); 1038 1032 ReturnComNotImplemented(); 1039 1033 #endif … … 1547 1541 * extended error info to indicate that USB is simply not available 1548 1542 * (w/o treating it as a failure), for example, as in OSE. */ 1549 NOREF(aName); 1550 NOREF(aFilter); 1543 RT_NOREF(aName, aFilter); 1551 1544 ReturnComNotImplemented(); 1552 1545 #endif … … 1608 1601 * extended error info to indicate that USB is simply not available 1609 1602 * (w/o treating it as a failure), for example, as in OSE. */ 1610 NOREF(aPosition); 1611 NOREF(aFilter); 1603 RT_NOREF(aPosition, aFilter); 1612 1604 ReturnComNotImplemented(); 1613 1605 #endif … … 1662 1654 * extended error info to indicate that USB is simply not available 1663 1655 * (w/o treating it as a failure), for example, as in OSE. */ 1664 NOREF(aPosition);1656 RT_NOREF(aPosition); 1665 1657 ReturnComNotImplemented(); 1666 1658 #endif … … 1851 1843 1852 1844 #else /* !VBOX_WITH_USB */ 1853 NOREF(aName); 1854 NOREF(aDevice); 1845 RT_NOREF(aName, aDevice); 1855 1846 return E_NOTIMPL; 1856 1847 #endif /* !VBOX_WITH_USB */ … … 1886 1877 1887 1878 #else /* !VBOX_WITH_USB */ 1888 NOREF(aId); 1889 NOREF(aDevice); 1879 RT_NOREF(aId, aDevice); 1890 1880 return E_NOTIMPL; 1891 1881 #endif /* !VBOX_WITH_USB */ … … 1929 1919 return m->pUSBProxyService->addUSBDeviceSource(aBackend, aId, aAddress, aPropertyNames, aPropertyValues); 1930 1920 #else 1921 RT_NOREF(aBackend, aId, aAddress, aPropertyNames, aPropertyValues); 1931 1922 ReturnComNotImplemented(); 1932 1923 #endif … … 1939 1930 return m->pUSBProxyService->removeUSBDeviceSource(aId); 1940 1931 #else 1932 RT_NOREF(aId); 1941 1933 ReturnComNotImplemented(); 1942 1934 #endif … … 1980 1972 rc = m->pUSBProxyService->i_loadSettings(data.llUSBDeviceSources); 1981 1973 #else 1982 NOREF(data);1974 RT_NOREF(data); 1983 1975 #endif /* VBOX_WITH_USB */ 1984 1976 return rc; … … 2009 2001 return m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources); 2010 2002 #else 2011 NOREF(data);2003 RT_NOREF(data); 2012 2004 return S_OK; 2013 2005 #endif /* VBOX_WITH_USB */ … … 2392 2384 } 2393 2385 #else 2394 NOREF(list);2386 RT_NOREF(list); 2395 2387 /* PORTME */ 2396 2388 #endif
Note:
See TracChangeset
for help on using the changeset viewer.