Difference between revisions of "Filesystem driver"

From DSiBrew
Jump to navigation Jump to search
(Created page with "The '''filesystem driver''' is a PXI service with a complex protocol. == Structs == <pre> typedef struct { u32 name; // either a pointer to the name or the name itself i...")
(No difference)

Revision as of 06:25, 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;

typedef struct {
	u32 unknown[2];
	FileSystem *fs;
	u32 flags;
	u32 unknown2;
	u32 state;
	u32 unknown3[13];
} FILE;