Changeset 81425 in vbox for trunk/src/VBox/Main/include/MachineImplMoveVM.h
- Timestamp:
- Oct 21, 2019 6:19:39 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 134142
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImplMoveVM.h
r81415 r81425 58 58 { 59 59 Guid snapshotUuid; 60 Utf8Str str SaveStateFile;60 Utf8Str strFile; 61 61 ULONG uWeight; 62 } S AVESTATETASKMOVE;62 } SNAPFILETASKMOVE; 63 63 64 64 struct fileList_t; … … 68 68 std::vector<ComObjPtr<Machine> > machineList; 69 69 RTCList<MEDIUMTASKCHAINMOVE> m_llMedias; 70 RTCList<SAVESTATETASKMOVE> m_llSaveStateFiles; 70 RTCList<SNAPFILETASKMOVE> m_llSaveStateFiles; 71 RTCList<SNAPFILETASKMOVE> m_llNVRAMFiles; 71 72 std::map<Utf8Str, MEDIUMTASKMOVE> m_finalMediumsMap; 72 std::map<Utf8Str, SAVESTATETASKMOVE> m_finalSaveStateFilesMap; 73 std::map<Utf8Str, SNAPFILETASKMOVE> m_finalSaveStateFilesMap; 74 std::map<Utf8Str, SNAPFILETASKMOVE> m_finalNVRAMFilesMap; 73 75 std::map<VBoxFolder_t, Utf8Str> m_vmFolders; 74 76 … … 116 118 void updateProgressStats(MEDIUMTASKCHAINMOVE &mtc, ULONG &uCount, ULONG &uTotalWeight) const; 117 119 HRESULT addSaveState(const ComObjPtr<Machine> &machine); 120 HRESULT addNVRAM(const ComObjPtr<Machine> &machine); 118 121 void printStateFile(settings::SnapshotsList &snl); 119 122 HRESULT getFilesList(const Utf8Str &strRootFolder, fileList_t &filesList); … … 121 124 HRESULT deleteFiles(const RTCList<Utf8Str> &listOfFiles); 122 125 void updatePathsToStateFiles(const Utf8Str &sourcePath, const Utf8Str &targetPath); 126 void updatePathsToNVRAMFiles(const Utf8Str &sourcePath, const Utf8Str &targetPath); 123 127 HRESULT moveAllDisks(const std::map<Utf8Str, MEDIUMTASKMOVE> &listOfDisks, const Utf8Str &strTargetFolder = Utf8Str::Empty); 124 128 HRESULT restoreAllDisks(const std::map<Utf8Str, MEDIUMTASKMOVE> &listOfDisks);
Note:
See TracChangeset
for help on using the changeset viewer.