mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
21 lines
645 B
C
21 lines
645 B
C
#pragma once
|
|
|
|
#ifndef __FSEXT_H__
|
|
#define __FSEXT_H__
|
|
|
|
#include <switch/types.h>
|
|
#include <switch/services/fs.h>
|
|
|
|
// IFileSystemProxy
|
|
Result fsOpenGameCardStorage(FsStorage* out, u32 handle, u32 partition);
|
|
Result fsOpenGameCardFileSystem(FsFileSystem* out, u32 handle, u32 partition);
|
|
|
|
// IDeviceOperator
|
|
Result fsDeviceOperatorIsGameCardInserted(FsDeviceOperator* d, bool* out);
|
|
Result fsDeviceOperatorGetGameCardHandle(FsDeviceOperator* d, u32* out);
|
|
Result fsDeviceOperatorUpdatePartitionInfo(FsDeviceOperator* d, u32 handle, u32* out_title_version, u64* out_title_id);
|
|
|
|
// FsStorage
|
|
Result fsStorageGetSize(FsStorage* s, u64* out);
|
|
|
|
#endif
|