Changeset 94763 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 29, 2022 4:36:29 PM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/DisplayUtils.cpp
r93444 r94763 41 41 42 42 PSSMHANDLE pSSM; 43 int vrc = SSMR3Open(strStateFilePath.c_str(), 0 /*fFlags*/, &pSSM); 43 int vrc = SSMR3Open(strStateFilePath.c_str(), NULL /*pStreamOps*/, NULL /*pvStreamOps*/, 44 0 /*fFlags*/, &pSSM); 44 45 if (RT_SUCCESS(vrc)) 45 46 { … … 157 158 158 159 PSSMHANDLE pSSM; 159 int vrc = SSMR3Open(strStateFilePath.c_str(), 0 /*fFlags*/, &pSSM); 160 int vrc = SSMR3Open(strStateFilePath.c_str(), NULL /*pStreamOps*/, NULL /*pvStreamOps*/, 161 0 /*fFlags*/, &pSSM); 160 162 if (RT_SUCCESS(vrc)) 161 163 { -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r94744 r94763 1616 1616 1617 1617 PSSMHANDLE pSSM; 1618 int vrc = pVMM->pfnSSMR3Open(strSavedStateFile.c_str(), 0, &pSSM); 1618 int vrc = pVMM->pfnSSMR3Open(strSavedStateFile.c_str(), NULL /*pStreamOps*/, NULL /*pvStreamOps*/, 1619 0, &pSSM); 1619 1620 if (RT_SUCCESS(vrc)) 1620 1621 { … … 7861 7862 7862 7863 ComAssertRet(bstrSavedStateFile.isNotEmpty(), E_FAIL); 7863 int vrc = pVMM->pfnSSMR3ValidateFile(strSavedStateFile.c_str(), false /* fChecksumIt */); 7864 int vrc = pVMM->pfnSSMR3ValidateFile(strSavedStateFile.c_str(), NULL /*pStreamOps*/, NULL /*pvStreamOps*/, 7865 false /* fChecksumIt */); 7864 7866 if (RT_FAILURE(vrc)) 7865 7867 {
Note:
See TracChangeset
for help on using the changeset viewer.