mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-16 00:33:58 +12:00
[FS] Implement OpenDirectory
This commit is contained in:
parent
1078253f6c
commit
494f3f1899
6 changed files with 89 additions and 5 deletions
include/services
|
@ -29,6 +29,7 @@ class FSService {
|
|||
|
||||
ArchiveBase* getArchiveFromID(u32 id);
|
||||
std::optional<Handle> openArchiveHandle(u32 archiveID, const FSPath& path);
|
||||
std::optional<Handle> openDirectoryHandle(ArchiveBase* archive, const FSPath& path);
|
||||
std::optional<Handle> openFileHandle(ArchiveBase* archive, const FSPath& path, const FSPath& archivePath, const FilePerms& perms);
|
||||
FSPath readPath(u32 type, u32 pointer, u32 size);
|
||||
|
||||
|
@ -42,6 +43,7 @@ class FSService {
|
|||
void initializeWithSdkVersion(u32 messagePointer);
|
||||
void isSdmcDetected(u32 messagePointer);
|
||||
void openArchive(u32 messagePointer);
|
||||
void openDirectory(u32 messagePointer);
|
||||
void openFile(u32 messagePointer);
|
||||
void openFileDirectly(u32 messagePointer);
|
||||
void setPriority(u32 messagePointer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue