stoneharry

Untitled

Apr 6th, 2013
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. struct UpdateFileHeader
  2. {
  3.    UINT16 HdrSize; // always 0x0018
  4.    BYTE override; // 0x01 => override with new file; 0x04 => update file (bsdiff)
  5.    BYTE version; // always 0x04
  6.    UINT32 unknown3;
  7.    UINT32 OldFileSize; // file size before the update (uncompressed)
  8.    UINT32 NewFileSize; // size of the entire file after the update is applied (uncompressed)
  9.    UINT32 unknown6; // always 0
  10.    UINT32 unknown7; // always 0
  11. };
Advertisement
Add Comment
Please, Sign In to add comment