Changeset 36074 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Feb 24, 2011 3:38:25 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70196
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r36058 r36074 200 200 struct SSData 201 201 { 202 Utf8Str mStateFilePath;202 Utf8Str strStateFilePath; 203 203 }; 204 204 … … 645 645 Utf8Str queryLogFilename(ULONG idx); 646 646 647 void composeSavedStateFilename(Utf8Str &strStateFilePath); 648 647 649 HRESULT openRemoteSession(IInternalSessionControl *aControl, 648 650 IN_BSTR aType, IN_BSTR aEnvironment, … … 1007 1009 struct ConsoleTaskData 1008 1010 { 1009 ConsoleTaskData() : mLastState(MachineState_Null) {} 1011 ConsoleTaskData() 1012 : mLastState(MachineState_Null) 1013 { } 1010 1014 1011 1015 MachineState_T mLastState; … … 1016 1020 1017 1021 // used when saving state (either as part of a snapshot or separate) 1018 Utf8Str mStateFilePath;1022 Utf8Str strStateFilePath; 1019 1023 }; 1020 1024 … … 1034 1038 1035 1039 HRESULT endSavingState(HRESULT aRC, const Utf8Str &aErrMsg); 1040 void releaseSavedStateFile(const Utf8Str &strSavedStateFile, Snapshot *pSnapshotToIgnore); 1036 1041 1037 1042 void deleteSnapshotHandler(DeleteSnapshotTask &aTask); -
trunk/src/VBox/Main/include/SnapshotImpl.h
r35638 r36074 98 98 const ComObjPtr<Snapshot> getFirstChild() const; 99 99 100 const Utf8Str& stateFilePath() const; 101 HRESULT deleteStateFile(); 100 const Utf8Str& getStateFilePath() const; 102 101 103 102 ULONG getChildrenCount(); … … 119 118 const Utf8Str &strNewPath); 120 119 120 bool sharesSavedStateFile(const Utf8Str &strPath, 121 Snapshot *pSnapshotToIgnore); 122 121 123 HRESULT saveSnapshot(settings::Snapshot &data, bool aAttrsOnly); 122 124 HRESULT saveSnapshotImpl(settings::Snapshot &data, bool aAttrsOnly);
Note:
See TracChangeset
for help on using the changeset viewer.