2018-06-10 18:11:05 +01:00
|
|
|
/**
|
|
|
|
* @file fs_shim.h
|
|
|
|
* @brief Filesystem Services (fs) IPC wrapper. To be merged into libnx, eventually.
|
|
|
|
* @author SciresM
|
|
|
|
* @copyright libnx Authors
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TODO: Reverse this more. */
|
|
|
|
typedef struct {
|
|
|
|
u32 flags[0x40/sizeof(u32)];
|
|
|
|
} FsRangeInfo;
|
|
|
|
|
2018-06-12 23:00:09 +01:00
|
|
|
/* Necessary evils. */
|
|
|
|
Result ipcCopyFromDomain(Handle session, u32 object_id, Service *out);
|
|
|
|
|
2018-06-10 18:11:05 +01:00
|
|
|
/* Missing fsp-srv commands. */
|
2018-06-15 00:50:01 +01:00
|
|
|
Result fsOpenDataStorageByCurrentProcessFwd(Service* s, FsStorage* out);
|
|
|
|
Result fsOpenDataStorageByCurrentProcessFromDomainFwd(Service* s, u32 *out_object_id);
|
2018-06-10 18:11:05 +01:00
|
|
|
Result fsOpenDataStorageByDataId(Service* s, FsStorageId storage_id, u64 data_id, FsStorage* out);
|
2018-06-12 23:00:09 +01:00
|
|
|
Result fsOpenDataStorageByDataIdFromDomain(Service* s, FsStorageId storage_id, u64 data_id, u32 *out_object_id);
|
2018-06-10 18:11:05 +01:00
|
|
|
|
|
|
|
/* Missing FS File commands. */
|
|
|
|
Result fsFileOperateRange(FsFile* f, u32 op_id, u64 off, u64 len, FsRangeInfo *out);
|
|
|
|
|
|
|
|
/* Missing FS Storage commands. */
|
|
|
|
Result fsStorageGetSize(FsStorage* s, u64* out);
|
|
|
|
Result fsStorageOperateRange(FsStorage* s, u32 op_id, u64 off, u64 len, FsRangeInfo *out);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|