Filesystem driver: Difference between revisions
Hallowizer (talk | contribs) →Structs: added next pointer to Filesystem |
Hallowizer (talk | contribs) →Structs: added FILE linked list stuff |
||
| Line 6: | Line 6: | ||
u32 name; // either a pointer to the name or the name itself if the name is 3 chars | u32 name; // either a pointer to the name or the name itself if the name is 3 chars | ||
Filesystem *next; | Filesystem *next; | ||
FILE *partialFileList; | |||
// ... | // ... | ||
} Filesystem; | } Filesystem; | ||
typedef struct { | typedef struct { | ||
u32 unknown | FILE *next; | ||
u32 unknown; | |||
Filesystem *fs; | Filesystem *fs; | ||
u32 flags; | u32 flags; | ||