File structure: GobHeader Gob Item information Gob Data |
The header for an GOB file is:
GOBHeader=record array[0..2] of char; {'GOB '} byte; {Apparently - version= x20 } Longint; {Offset to first file size from begining of file= x14 } Longint; {Offset to #of GobItems from file beginning= x0C } Longint; {# of items in gob file } |
Followed by the Item Information .
GobItems =record Longint: {offset from begining of file} Longint; {Length of file} array[0..127] of char {path and name of file} |
Finaly followed by the file data