-
Notifications
You must be signed in to change notification settings - Fork 1
Pod 2 Format Reference
Jon Daniel edited this page Nov 6, 2024
·
20 revisions
EPD POD1 POD2 POD3 POD4 POD5 POD6 Terminal Reality Home
- Checksum Algorithm
- Compression Algorithm
- Dependency Records
- Audit Trail
- String Helpers
- Version History
- Related Software
struct header
{
c8<4> ident; /* "POD2" */
u32<1> checksum; /* covering data starting after header->checksum */
c8<80> comment;
u32<1> entry_count;
u32<1> audit_count;
};
struct entry
{
u32<1> path_offset; /* relative to end of file->entries */
u32<1> size;
u32<1> offset; /* relative to start of file */
t32<1> timestamp;
u32<1> checksum;
};
struct file
{
struct header header;
struct entry entries[header.entry_count];
str path_data;
buf entry_data;
tr::archive<pod2>::audit audits[header.audit_count];
};
All information here is to my best knowledge, is is not proven by any official reference manual by Microsoft or Terminal Reality.