Disney Games POD: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (→POD) |
imported>Ikskoks |
||
| Line 13: | Line 13: | ||
// header | // header | ||
12 bytes (char) - signature // "Pod file" or "Pod" | 12 bytes (char) - signature // "Pod file" or "Pod" | ||
4 bytes (uint32) - number of files | |||
// info table | |||
number_of_files * | |||
{ | |||
12 bytes (char) - file name | |||
4 bytes (uint32) - file size | |||
} | |||
// data | |||
{ | |||
x bytes - file data | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
Revision as of 11:43, 10 July 2022
Back to index | Edit this page
POD
- Format Type : Archive
- Endian Order : Little Endian
- Signature : Pod file / Pod
Format Specifications
// header
12 bytes (char) - signature // "Pod file" or "Pod"
4 bytes (uint32) - number of files
// info table
number_of_files *
{
12 bytes (char) - file name
4 bytes (uint32) - file size
}
// data
{
x bytes - file data
}
Notes and Comments
None.
Games
List of games using this file format:
- Hades Challenge (PC) (*.POD)
QuickBMS Script
Not written yet.
Compatible Programs
- ScummVM (Hadesch engine) (see source code on github here)