comparison mpffs/struct.h @ 29:e96d6862cec0

mpffs-rdutils code started
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 30 Jun 2013 05:16:23 +0000
parents
children 3cca8070ef0f
comparison
equal deleted inserted replaced
28:c9f7a4afccc9 29:e96d6862cec0
1 /* actual MPFFS on-media structure */
2 struct mpffs_index {
3 u16 len;
4 u8 unknown_b1;
5 u8 type;
6 u16 descend;
7 u16 sibling;
8 u32 dataptr;
9 u16 unknown_w1;
10 u16 unknown_w2;
11 };
12
13 /* our own struct for convenience */
14 struct objinfo {
15 u16 entryno;
16 struct mpffs_index *idxrec;
17 u8 *dataptr;
18 u32 offset;
19 u16 len;
20 u8 type;
21 u16 descend;
22 u16 sibling;
23 };