mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-24 16:06:13 +00:00
17 lines
No EOL
457 B
C
17 lines
No EOL
457 B
C
/**
|
|
* @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(); |