mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
17 lines
445 B
C
17 lines
445 B
C
/**
|
|
* @file fsldr.h
|
|
* @brief FilesystemProxy-ForLoader (fsp-ldr) service IPC wrapper.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../services/sm.h"
|
|
#include "../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(); |