Remove DWORD from FileHeader interface

This commit is contained in:
notmatthewbeshay 2026-03-09 23:59:09 +11:00
parent 22757b4b51
commit 1687568ff7
2 changed files with 2 additions and 2 deletions

View file

@ -325,7 +325,7 @@ unsigned int FileHeader::GetFileSize()
return GetStartOfNextData() + ( sizeof(FileEntrySaveData) * (unsigned int)fileTable.size() );
}
void FileHeader::AdjustStartOffsets(FileEntry *file, DWORD nNumberOfBytesToWrite, bool subtract /*= false*/)
void FileHeader::AdjustStartOffsets(FileEntry *file, unsigned int nNumberOfBytesToWrite, bool subtract /*= false*/)
{
bool found = false;
for( unsigned int i = 0; i < fileTable.size(); ++i )

View file

@ -173,7 +173,7 @@ protected:
unsigned int GetFileSize();
void AdjustStartOffsets(FileEntry *file, DWORD nNumberOfBytesToWrite, bool subtract = false);
void AdjustStartOffsets(FileEntry *file, unsigned int nNumberOfBytesToWrite, bool subtract = false);
bool fileExists( const std::wstring &name );