Difference between revisions of "Filesystem driver"

From DSiBrew
Jump to navigation Jump to search
(→‎Structs: added FILE linked list stuff)
(→‎Structs: added the unknown thread queue to FILE)
Line 17: Line 17:
 
u32 unknown2;
 
u32 unknown2;
 
u32 state;
 
u32 state;
u32 unknown3[13];
+
OSThreadQueue *unknownThreadQueue;
 +
u32 unknown3[12];
 
} FILE;
 
} FILE;
 
</pre>
 
</pre>

Revision as of 06:58, 2 October 2022

The filesystem driver is a PXI service with a complex protocol.

Structs

typedef struct {
	u32 name; // either a pointer to the name or the name itself if the name is 3 chars
	Filesystem *next;
	FILE *partialFileList;
	// ...
} Filesystem;

typedef struct {
	FILE *next;
	u32 unknown;
	Filesystem *fs;
	u32 flags;
	u32 unknown2;
	u32 state;
	OSThreadQueue *unknownThreadQueue;
	u32 unknown3[12];
} FILE;