2018-05-15 13:57:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-05 23:44:18 +01:00
|
|
|
#ifndef __FS_EXT_H__
|
|
|
|
#define __FS_EXT_H__
|
2018-06-21 07:42:46 +01:00
|
|
|
|
2018-05-15 13:57:40 +01:00
|
|
|
#include <switch/types.h>
|
|
|
|
#include <switch/services/fs.h>
|
|
|
|
|
|
|
|
// IFileSystemProxy
|
2019-04-21 17:27:33 +01:00
|
|
|
Result fsOpenGameCardStorage(FsStorage* out, const FsGameCardHandle* handle, u32 partition);
|
|
|
|
Result fsOpenGameCardDetectionEventNotifier(FsEventNotifier* out);
|
2018-05-15 13:57:40 +01:00
|
|
|
|
|
|
|
// IDeviceOperator
|
2019-04-21 17:27:33 +01:00
|
|
|
Result fsDeviceOperatorUpdatePartitionInfo(FsDeviceOperator* d, const FsGameCardHandle* handle, u32* out_title_version, u64* out_title_id);
|
2018-05-15 13:57:40 +01:00
|
|
|
|
2018-06-21 07:42:46 +01:00
|
|
|
#endif
|