home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / FAQSYS18.ZIP / FAQS.DAT / WSIKES1.TXT < prev    next >
Text File  |  1996-01-11  |  1KB  |  31 lines

  1. Listing 1.  General TRE File Format
  2. FILE            DATA
  3. OFFSET            SIZE            DESCRIPTION
  4.  
  5. 0-3                char            OXTREO char string.
  6. 4-7             char            Blanks. 4 bytes of 00.
  7. 8-11            long            Starting Offset of the Indirect Record Pointer Table. 
  8. 12-15            long            Starting Offset of the Path Name Table. 
  9. 16-19            long            Starting Offset of the Record Pointer Table.  
  10. 20-23            long            Offset of the first Data Record in this TRE file.
  11. 24-(xx-1)        var                Indirect Record Pointer Table.  This table contains indirect 
  12.                                 pointers, or Opointers to pointersO.  The values in this table 
  13.                                 point into the Path Name Table or into the Record Pointer
  14.                                 Table.
  15. xx-(yy-1)        var             Path Name Table.  Table of variable-length records containing 
  16.                                 system path names and other path-related data.
  17.  
  18. yy-(zz-1)        var             Record Pointer Table. This table consists of structures 
  19.                                 containing the file offsets and sizes of the Data Records 
  20.                                 in this TRE file.
  21.  
  22. zz-EOF             var                Individual Data Records.
  23.  
  24. NOTES:
  25. 1.  var refers to data having variable sizes.
  26. 2.  xx is the Starting Offset of the Path Name Table.
  27. 3.  yy is the Starting Offset of the Record Pointer Table.
  28. 4.  zz is the Offset of the First Data Record.
  29. 5.  EOF refers to the end of the file.
  30.  
  31.