nxdumptool/source/fs_ext.h

17 lines
464 B
C
Raw Normal View History

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