libnx
fsldr.h
Go to the documentation of this file.
1 /**
2  * @file fsldr.h
3  * @brief FilesystemProxy-ForLoader (fsp-ldr) service IPC wrapper.
4  * @author SciresM
5  * @copyright libnx Authors
6  */
7 #pragma once
8 #include "../types.h"
9 #include "../services/sm.h"
10 #include "../services/fs.h"
11 
12 Result fsldrInitialize(void);
13 void fsldrExit(void);
14 
15 Result fsldrOpenCodeFileSystem(u64 tid, const char *path, FsFileSystem* out);
16 Result fsldrIsArchivedProgram(u64 pid, bool *out);
17 Result fsldrSetCurrentProcess();
u32 Result
Function error code result type.
Definition: types.h:46
uint64_t u64
64-bit unsigned integer.
Definition: types.h:24
Definition: fs.h:23