Changeset 101284 in vbox for trunk/src/VBox
- Timestamp:
- Sep 27, 2023 9:11:34 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r101282 r101284 720 720 HRESULT PlatformProperties::getSupportedGuestOSTypes(std::vector<ComPtr<IGuestOSType>> &aSupportedGuestOSTypes) 721 721 { 722 /* We only have all supported guest OS types as part of VBoxSVC, not in VBoxC itself. */ 723 #ifdef IN_VBOXSVC 722 724 std::vector<PlatformArchitecture_T> vecArchitectures(mPlatformArchitecture); 723 725 return mParent->i_getSupportedGuestOSTypes(vecArchitectures, aSupportedGuestOSTypes); 726 #else /* VBoxC */ 727 RT_NOREF(aSupportedGuestOSTypes); 728 return VBOX_E_NOT_SUPPORTED; 729 #endif 724 730 } 725 731
Note:
See TracChangeset
for help on using the changeset viewer.