Changeset 101756 in vbox
- Timestamp:
- Nov 3, 2023 4:12:00 PM (15 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r101745 r101756 12723 12723 name="IPlatformProperties" 12724 12724 extends="$unknown" 12725 uuid=" 4c1c92fe-c486-475a-93d3-03be5e5dda3b"12725 uuid="da633d5f-4858-42cf-9914-64bd4a2c9c7a" 12726 12726 wsmap="managed" 12727 12727 rest="managed" … … 12809 12809 </attribute> 12810 12810 12811 <attribute name=" supportedNetAdpPromiscModePolicies" type="NetworkAdapterPromiscModePolicy" safearray="yes" readonly="yes">12811 <attribute name="getSupportedNetAdpPromiscModePols" type="NetworkAdapterPromiscModePolicy" safearray="yes" readonly="yes"> 12812 12812 <desc> 12813 12813 Returns an array of officially supported values for enum <link to="NetworkAdapterPromiscModePolicy"/>, -
trunk/src/VBox/Main/include/PlatformPropertiesImpl.h
r101745 r101756 81 81 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE; 82 82 HRESULT getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes); 83 HRESULT getSupportedNetAdpPromiscModePol icies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies);83 HRESULT getSupportedNetAdpPromiscModePols(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies); 84 84 HRESULT getSupportedNetworkAdapterTypes(std::vector<NetworkAdapterType_T> &aSupportedNetworkAdapterTypes) RT_OVERRIDE; 85 85 HRESULT getSupportedUartTypes(std::vector<UartType_T> &aSupportedUartTypes) RT_OVERRIDE; -
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r101745 r101756 729 729 } 730 730 731 HRESULT PlatformProperties::getSupportedNetAdpPromiscModePol icies(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies)731 HRESULT PlatformProperties::getSupportedNetAdpPromiscModePols(std::vector<NetworkAdapterPromiscModePolicy_T> &aSupportedNetworkAdapterPromiscModePolicies) 732 732 { 733 733 static const NetworkAdapterPromiscModePolicy_T aNetworkAdapterPromiscModePolicies[] =
Note:
See TracChangeset
for help on using the changeset viewer.