2018-05-15 13:57:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <switch/types.h>
|
|
|
|
#include <switch/services/fs.h>
|
|
|
|
|
|
|
|
// IFileSystemProxy
|
|
|
|
Result fsOpenGameCard(FsStorage* out, u32 handle, u32 partition);
|
|
|
|
|
|
|
|
|
|
|
|
// IDeviceOperator
|
|
|
|
Result fsDeviceOperatorIsGameCardInserted(FsDeviceOperator* d, bool* out);
|
|
|
|
Result fsDeviceOperatorGetGameCardHandle(FsDeviceOperator* d, u32* out);
|
2018-05-15 17:31:46 +01:00
|
|
|
Result fsDeviceOperatorUpdatePartitionInfo(FsDeviceOperator* d, u32 handle, u32* out_title_version, u64* out_title_id);
|
2018-05-15 13:57:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
// FsStorage
|
|
|
|
Result fsStorageGetSize(FsStorage* s, u64* out);
|