Changeset 50198 in vbox
- Timestamp:
- Jan 23, 2014 6:35:29 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91768
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ApplianceImpl.h
r50196 r50198 116 116 enum SetUpProgressMode { ImportFile, ImportS3, WriteFile, WriteS3 }; 117 117 118 /******************************************************************************* 119 * General stuff 120 ******************************************************************************/ 121 118 /** @name General stuff 119 * @{ 120 */ 122 121 bool i_isApplianceIdle(); 123 122 HRESULT i_searchUniqueVMName(Utf8Str& aName) const; … … 144 143 145 144 HRESULT i_findMediumFormatFromDiskImage(const ovf::DiskImage &di, ComObjPtr<MediumFormat>& mf); 146 147 /******************************************************************************* 148 *Read stuff149 * *****************************************************************************/150 145 /** @} */ 146 147 /** @name Read stuff 148 * @{ 149 */ 151 150 HRESULT i_readImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress); 152 151 … … 156 155 HRESULT i_readFSImpl(TaskOVF *pTask, const RTCString &strFilename, PVDINTERFACEIO pCallbacks, PSHASTORAGE pStorage); 157 156 HRESULT i_readS3(TaskOVF *pTask); 158 159 /******************************************************************************* 160 *Import stuff161 * *****************************************************************************/162 157 /** @} */ 158 159 /** @name Import stuff 160 * @} 161 */ 163 162 HRESULT i_importImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress); 164 163 … … 211 210 PSHASTORAGE pStorage); 212 211 213 /******************************************************************************* 214 * Write stuff 215 ******************************************************************************/ 216 212 HRESULT i_preCheckImageAvailability(PSHASTORAGE pSHAStorage, 213 RTCString &availableImage); 214 /** @} */ 215 216 /** @name Write stuff 217 * @{ 218 */ 217 219 HRESULT i_writeImpl(ovf::OVFVersion_T aFormat, const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress); 218 220 … … 236 238 ovf::OVFVersion_T enFormat, 237 239 XMLStack &stack); 238 239 HRESULT i_preCheckImageAvailability(PSHASTORAGE pSHAStorage, 240 RTCString &availableImage); 240 /** @} */ 241 241 242 242 friend class Machine; … … 247 247 struct VirtualSystemDescriptionEntry 248 248 { 249 uint32_t ulIndex; // zero-based index of this entry within array250 VirtualSystemDescriptionType_T type; // type of this entry251 Utf8Str strRef; // reference number (hard disk controllers only)252 Utf8Str strOvf; // original OVF value (type-dependent)253 Utf8Str strVBoxSuggested; // configuration value (type-dependent); original value suggested by interpret()254 Utf8Str strVBoxCurrent; // configuration value (type-dependent); current value, either from interpret() or setFinalValue()255 Utf8Str strExtraConfigSuggested; // extra configuration key=value strings (type-dependent); original value suggested by interpret()256 Utf8Str strExtraConfigCurrent; // extra configuration key=value strings (type-dependent); current value, either from interpret() or setFinalValue()257 258 uint32_t ulSizeMB; // hard disk images only: a copy of ovf::DiskImage::ulSuggestedSizeMB249 uint32_t ulIndex; ///< zero-based index of this entry within array 250 VirtualSystemDescriptionType_T type; ///< type of this entry 251 Utf8Str strRef; ///< reference number (hard disk controllers only) 252 Utf8Str strOvf; ///< original OVF value (type-dependent) 253 Utf8Str strVBoxSuggested; ///< configuration value (type-dependent); original value suggested by interpret() 254 Utf8Str strVBoxCurrent; ///< configuration value (type-dependent); current value, either from interpret() or setFinalValue() 255 Utf8Str strExtraConfigSuggested; ///< extra configuration key=value strings (type-dependent); original value suggested by interpret() 256 Utf8Str strExtraConfigCurrent; ///< extra configuration key=value strings (type-dependent); current value, either from interpret() or setFinalValue() 257 258 uint32_t ulSizeMB; ///< hard disk images only: a copy of ovf::DiskImage::ulSuggestedSizeMB 259 259 }; 260 260
Note:
See TracChangeset
for help on using the changeset viewer.