Files

19 lines
413 B
Plaintext
Raw Permalink Normal View History

2023-02-15 10:09:07 -08:00
#ifndef _CFORMDESCRIPTOR
#define _CFORMDESCRIPTOR
2023-02-13 16:25:12 -05:00
typedef struct
{
2023-02-13 13:22:03 -05:00
FourCC type;
2023-02-13 16:25:12 -05:00
uint64 size <format=hex>;
2023-02-12 13:41:14 -08:00
uint64 unk1;
2023-02-13 13:22:03 -05:00
FourCC id;
2023-02-16 10:39:11 -08:00
uint32 readerVersion <format=decimal>;
uint32 writerVersion <format=decimal>;
2023-02-13 16:25:12 -05:00
} FormDescriptor <
2023-02-16 10:39:11 -08:00
name=(Str("%s rv%d wv%d form header", id, readerVersion, writerVersion)),
2023-02-14 01:47:48 -05:00
comment=(SizeComment(size)),
bgcolor=cLtAqua
2023-02-13 16:25:12 -05:00
>;
2023-02-15 10:09:07 -08:00
#endif// _CFORMDESCRIPTOR