1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-10-18 19:31:43 +01:00
nxdumptool/source/fs_ext.h

17 lines
464 B
C
Raw Normal View History

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-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
#endif