FreeCalypso > hg > freecalypso-reveng
view mpffs/struct.h @ 200:492a6360e64d
leo-obj/frame_na7_db_ir: disassemble frame.obj in order to bring to light
the compiled form of that infamous TraceMask[0] = 0; line
| author | Space Falcon <falcon@ivan.Harhan.ORG> | 
|---|---|
| date | Sat, 06 Jun 2015 18:32:49 +0000 | 
| parents | 3cca8070ef0f | 
| children | 
line wrap: on
 line source
/* actual MPFFS on-media structure */ struct mpffs_index { u16 len; u8 unknown_b1; u8 type; u16 descend; u16 sibling; u32 dataptr; u16 unknown_w1; u16 unknown_w2; }; /* our own struct for convenience */ struct objinfo { u16 entryno; struct mpffs_index *idxrec; u8 *dataptr; u32 offset; u16 len; u8 type; u16 descend; u16 sibling; }; /* chunk location and size info */ struct chunkinfo { u8 *start; u8 *end; size_t len; };
