Move files around to new directory structure

This commit is contained in:
jakcron
2022-04-13 13:28:31 +08:00
parent 5840526951
commit 9b5ec5a4b7
113 changed files with 1 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
#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;