mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-29 14:05:17 -04:00
Stratosphere: Add libnx fsp-ldr wrapper to Loader
This commit is contained in:
parent
af11f9fdec
commit
f0759b0afc
3 changed files with 199 additions and 2 deletions
17
stratosphere/loader/source/lib/fsldr.h
Normal file
17
stratosphere/loader/source/lib/fsldr.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @file fsldr.h
|
||||
* @brief FilesystemProxy-ForLoader (fsp-ldr) service IPC wrapper.
|
||||
* @author SciresM
|
||||
* @copyright libnx Authors
|
||||
*/
|
||||
#pragma once
|
||||
#include <switch/types.h>
|
||||
#include <switch/services/sm.h>
|
||||
#include <switch/services/fs.h>
|
||||
|
||||
Result fsldrInitialize(void);
|
||||
void fsldrExit(void);
|
||||
|
||||
Result fsldrOpenCodeFileSystem(u64 tid, const char *path, FsFileSystem* out);
|
||||
Result fsldrIsArchivedProgram(u64 pid, bool *out);
|
||||
Result fsldrSetCurrentProcess();
|
Loading…
Add table
Add a link
Reference in a new issue