You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
19 lines
413 B
Plaintext
19 lines
413 B
Plaintext
#ifndef _CFORMDESCRIPTOR
|
|
#define _CFORMDESCRIPTOR
|
|
typedef struct
|
|
{
|
|
FourCC type;
|
|
uint64 size <format=hex>;
|
|
uint64 unk1;
|
|
FourCC id;
|
|
uint32 readerVersion <format=decimal>;
|
|
uint32 writerVersion <format=decimal>;
|
|
} FormDescriptor <
|
|
name=(Str("%s rv%d wv%d form header", id, readerVersion, writerVersion)),
|
|
comment=(SizeComment(size)),
|
|
bgcolor=cLtAqua
|
|
>;
|
|
|
|
|
|
#endif// _CFORMDESCRIPTOR
|