mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-30 03:42:55 +00:00
Remove DWORD from FileHeader interface
This commit is contained in:
parent
22757b4b51
commit
1687568ff7
|
|
@ -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 )
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue