Changeset 101299 in vbox
- Timestamp:
- Sep 27, 2023 9:21:05 PM (12 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
-
include/PlatformPropertiesImpl.h (modified) (1 diff)
-
include/VirtualBoxImpl.h (modified) (1 diff)
-
src-all/PlatformPropertiesImpl.cpp (modified) (1 diff)
-
src-server/VirtualBoxImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/PlatformPropertiesImpl.h
r101282 r101299 80 80 HRESULT getSupportedFirmwareTypes(std::vector<FirmwareType_T> &aSupportedFirmwareTypes) RT_OVERRIDE; 81 81 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE; 82 HRESULT getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes);82 HRESULT getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes); 83 83 HRESULT getSupportedNetworkAdapterTypes(std::vector<NetworkAdapterType_T> &aSupportedNetworkAdapterTypes) RT_OVERRIDE; 84 84 HRESULT getSupportedUartTypes(std::vector<UartType_T> &aSupportedUartTypes) RT_OVERRIDE; -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r101282 r101299 322 322 HRESULT i_releaseCryptoIf(PCVBOXCRYPTOIF pCryptoIf); 323 323 HRESULT i_unloadCryptoIfModule(void); 324 HRESULT i_getSupportedGuestOSTypes(std::vector<PlatformArchitecture_T> aArchitectures, std::vector<ComPtr<IGuestOSType>> &aGuestOSTypes); 324 HRESULT i_getSupportedGuestOSTypes(std::vector<PlatformArchitecture_T> aArchitectures, 325 std::vector<ComPtr<IGuestOSType> > &aGuestOSTypes); 325 326 326 327 private: -
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r101287 r101299 718 718 } 719 719 720 HRESULT PlatformProperties::getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes)720 HRESULT PlatformProperties::getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aSupportedGuestOSTypes) 721 721 { 722 722 /* We only have all supported guest OS types as part of VBoxSVC, not in VBoxC itself. */ -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r101282 r101299 1384 1384 * Will be empty if none supported. 1385 1385 */ 1386 HRESULT VirtualBox::i_getSupportedGuestOSTypes(std::vector<PlatformArchitecture_T> aArchitectures, std::vector<ComPtr<IGuestOSType>> &aGuestOSTypes) 1386 HRESULT VirtualBox::i_getSupportedGuestOSTypes(std::vector<PlatformArchitecture_T> aArchitectures, 1387 std::vector<ComPtr<IGuestOSType> > &aGuestOSTypes) 1387 1388 { 1388 1389 AutoReadLock al(m->allGuestOSTypes.getLockHandle() COMMA_LOCKVAL_SRC_POS);
Note:
See TracChangeset
for help on using the changeset viewer.

