diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-12-17 13:17:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 13:17:58 -0600 |
commit | 096de8d9b2ffd90c52e790296bfd7c5436d45ca3 (patch) | |
tree | 9c5af2e04dea05221c71946a5dfc06471f77801d /include/file_system.h | |
parent | bc504264f1e54b3c1e482710c592e5549828bfe1 (diff) | |
parent | f90f3affeb9b0a66aa7df68f5fdecd692033faf9 (diff) |
Merge pull request #12 from SethBarberee/master
Merge work from SethBarberee/pmd-red into pret.
Diffstat (limited to 'include/file_system.h')
-rw-r--r-- | include/file_system.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/file_system.h b/include/file_system.h index 360f7ac..45f6aac 100644 --- a/include/file_system.h +++ b/include/file_system.h @@ -26,6 +26,12 @@ struct SiroArchive u8 *data; }; +struct UnkFileStruct1 +{ + /* 0x0 */ u32 unk0; + /* 0x4 */ u32 unk4; +}; + struct OpenedFile *OpenFile(const char *filename, const struct FileArchive *arc); u8 *GetFileDataPtr(struct OpenedFile *openedFile, int unused); struct OpenedFile *OpenFileAndGetFileDataPtr(const char *filename, const struct FileArchive *arc); |