NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
ARC.h
1#pragma once
2#include <types.h>
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef struct {
9 void *mpArchiveStartAddr;
10 void *mpFstStart;
11 void *mpFileStart;
12 u32 mEntryNum;
13 char *mpFstStringStart;
14 u32 mFstLength;
15 u32 mCurrDir;
16} ARCHandle;
17
18typedef struct {
19 ARCHandle *mpHandle;
20 int mEntryNum;
21 int mIsDirectory;
22 const char *mpName;
24
25#ifdef __cplusplus
26}
27#endif
Definition ARC.h:8