Changeset 87241 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 13, 2021 3:56:05 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142198
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Global.h
r82968 r87241 82 82 const StorageBus_T hdStorageBusType; 83 83 const ChipsetType_T chipsetType; 84 const IommuType_T iommuType; 84 85 const AudioControllerType_T audioControllerType; 85 86 const AudioCodecType_T audioCodecType; -
trunk/src/VBox/Main/include/GuestOSTypeImpl.h
r85215 r87241 79 79 HRESULT getRecommendedRTCUseUTC(BOOL *aRecommendedRTCUseUTC); 80 80 HRESULT getRecommendedChipset(ChipsetType_T *aChipsetType); 81 HRESULT getRecommendedIommuType(IommuType_T *aIommuType); 81 82 HRESULT getRecommendedAudioController(AudioControllerType_T *aAudioController); 82 83 HRESULT getRecommendedAudioCodec(AudioCodecType_T *aAudioCodec); … … 105 106 const StorageBus_T mHDStorageBusType; 106 107 const ChipsetType_T mChipsetType; 108 const IommuType_T mIommuType; 107 109 const AudioControllerType_T mAudioControllerType; 108 110 const AudioCodecType_T mAudioCodecType; -
trunk/src/VBox/Main/include/MachineImpl.h
r86908 r87241 319 319 PointingHIDType_T mPointingHIDType; 320 320 ChipsetType_T mChipsetType; 321 IommuType_T mIommuType; 321 322 ParavirtProvider_T mParavirtProvider; 322 323 Utf8Str mParavirtDebug; … … 896 897 HRESULT getChipsetType(ChipsetType_T *aChipsetType); 897 898 HRESULT setChipsetType(ChipsetType_T aChipsetType); 899 HRESULT getIommuType(IommuType_T *aIommuType); 900 HRESULT setIommuType(IommuType_T aIommuType); 898 901 HRESULT getSnapshotFolder(com::Utf8Str &aSnapshotFolder); 899 902 HRESULT setSnapshotFolder(const com::Utf8Str &aSnapshotFolder); -
trunk/src/VBox/Main/include/SystemPropertiesImpl.h
r85683 r87241 142 142 HRESULT getSupportedStorageControllerTypes(std::vector<StorageControllerType_T> &aSupportedStorageControllerTypes) RT_OVERRIDE; 143 143 HRESULT getSupportedChipsetTypes(std::vector<ChipsetType_T> &aSupportedChipsetTypes) RT_OVERRIDE; 144 HRESULT getSupportedIommuTypes(std::vector<IommuType_T> &aSupportedIommuTypes) RT_OVERRIDE; 144 145 HRESULT getSupportedVBoxUpdateTargetTypes(std::vector<VBoxUpdateTarget_T> &aSupportedVBoxUpdateTargetTypes) RT_OVERRIDE; 145 146 HRESULT getVBoxUpdateEnabled(BOOL *aVBoxUpdateEnabled) RT_OVERRIDE;
Note:
See TracChangeset
for help on using the changeset viewer.