SSBM Decomp
Loading...
Searching...
No Matches
dvdfs.h
Go to the documentation of this file.
1#ifndef DOLPHIN_DVD_DVDFS_H
2#define DOLPHIN_DVD_DVDFS_H
3
4#include <platform.h>
5
6#include <dolphin/dvd/dvd.h>
7#include <dolphin/os.h>
8
9typedef struct FSTEntry {
10 unsigned int isDirAndStringOff;
11 unsigned int parentOrPosition;
12 unsigned int nextEntryOrLength;
13} FSTEntry;
14
15void __DVDFSInit(void);
16
17#endif
void __DVDFSInit(void)
Definition dvdfs.c:22
Definition dvdfs.h:9
unsigned int parentOrPosition
Definition dvdfs.h:11
unsigned int nextEntryOrLength
Definition dvdfs.h:12
unsigned int isDirAndStringOff
Definition dvdfs.h:10