diff options
author | Ladislav Zezula <zezula@volny.cz> | 2023-12-21 22:36:45 +0100 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2023-12-21 22:36:45 +0100 |
commit | 2b50c079cb28d5becb347c54777edca6c9771ea3 (patch) | |
tree | dba51804af1606b558d4e2eb74b7428f6171e932 | |
parent | 47e5e0aced099800cb93a8441d3d5ab33240d23e (diff) |
Minors
-rwxr-xr-x | test/StormTest.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index 4e13b9f..186f33d 100755 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -2559,14 +2559,6 @@ static DWORD TestOpenArchive_GetFileInfo(TLogHelper & Logger, HANDLE hMpq, DWORD TestGetFileInfo(&Logger, hFile, SFileInfoFileTime, DataBuff, sizeof(DataBuff), &cbLength, true, ERROR_SUCCESS);
SFileCloseFile(hFile);
}
-
- // This file is in MPQ_2023_v1_Lusin2Rpg1.28.w3x
- if(SFileOpenFileEx(hMpq, "File00002875.blp", 0, &hFile))
- {
- TestGetFileInfo(&Logger, hFile, SFileInfoNameHash1, DataBuff, sizeof(DWORD), NULL, true, ERROR_SUCCESS);
- TestGetFileInfo(&Logger, hFile, SFileInfoNameHash2, DataBuff, sizeof(DWORD), NULL, true, ERROR_SUCCESS);
- SFileCloseFile(hFile);
- }
}
return ERROR_SUCCESS;
}
@@ -3834,7 +3826,7 @@ static DWORD TestReplaceFile(LPCTSTR szMpqPlainName, LPCTSTR szFilePlainName, LP static void Test_PlayingSpace()
{
-
+/*
// Check opening of a MPQ
LPCTSTR szArchiveName = _T("e:\\MPQ_2023_v1_Lusin2Rpg1.28.w3x");
LPBYTE pbBuffer = NULL;
@@ -3864,6 +3856,7 @@ static void Test_PlayingSpace() }
SFileCloseArchive(hMpq);
}
+*/
}
//-----------------------------------------------------------------------------
|