FIMG ("GMIF") - File Image
A data buffer for all the files stored in this archive.
Table of Contents
Data Structure
Section Container
struct ContainerSectionFIMG
{
/* 0x0 */ struct NitroSectionHeader sectionHeader;
/* 0x8 */ struct ContainerFIMG sectionData;
}; // entry size = sectionHeader.lengthSection
Field Name | Description | Data Type |
---|---|---|
sectionHeader | Header of this section. sectionHeader.signature = "GMIF" . | NitroSectionHeader |
sectionData | Content of this section. | ContainerFIMG |
FIMG Container
struct ContainerFIMG
{
// header
// empty
// data
/* 0x0 */ uint8_t data[sectionHeader.lengthSection - 0x8];
}; // entry size = sectionHeader.lengthSection - 0x8
Field Name | Description | Data Type |
---|---|---|
data | Raw data. The allocation table is needed to separate the files. | uint8_t[] |