mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
7113ade91d
corrected max exefs sections to 8
18 lines
258 B
C
18 lines
258 B
C
#pragma once
|
|
|
|
#define MAX_EXEFS_SECTIONS 8
|
|
|
|
typedef struct
|
|
{
|
|
char name[8];
|
|
u8 offset[4];
|
|
u8 size[4];
|
|
} exefs_filehdr;
|
|
|
|
typedef struct
|
|
{
|
|
exefs_filehdr fileHdr[MAX_EXEFS_SECTIONS];
|
|
u8 reserved[0x80];
|
|
u8 fileHashes[MAX_EXEFS_SECTIONS][0x20];
|
|
} exefs_hdr;
|