summaryrefslogtreecommitdiff
path: root/spec/eaf.fspec
blob: 3373de962925b524b24a2c76011f0302f4ad053a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct eaf {
   u8 header[4] | matches('#EAF') str;
   u16 major;
   u16 minor;
   u64 size;
   u32 count;
   u64 unknown;
   u8 padding[100] nul;

   struct {
      u8 path[256] | encoding('ascii') str;
      u64 offset hex;
      u64 size;
      u8 padding[16] nul;
   } metadata[count];
};