mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
19 lines
488 B
C
19 lines
488 B
C
/**
|
|
* @file fsldr.h
|
|
* @brief FilesystemProxy-ForLoader (fsp-ldr) service IPC wrapper.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../sf/service.h"
|
|
#include "../services/fs.h"
|
|
|
|
Result fsldrInitialize(void);
|
|
void fsldrExit(void);
|
|
Service* fsldrGetServiceSession(void);
|
|
|
|
Result fsldrOpenCodeFileSystem(u64 tid, const char *path, FsFileSystem* out);
|
|
Result fsldrIsArchivedProgram(u64 pid, bool *out);
|
|
Result fsldrSetCurrentProcess(void);
|