mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-10 04:31:44 +00:00
16 lines
483 B
C
16 lines
483 B
C
#pragma once
|
|
|
|
#ifndef __FS_EXT_H__
|
|
#define __FS_EXT_H__
|
|
|
|
#include <switch/types.h>
|
|
#include <switch/services/fs.h>
|
|
|
|
// IFileSystemProxy
|
|
Result fsOpenGameCardStorage(FsStorage *out, const FsGameCardHandle *handle, u32 partition);
|
|
Result fsOpenGameCardDetectionEventNotifier(FsEventNotifier *out);
|
|
|
|
// IDeviceOperator
|
|
Result fsDeviceOperatorUpdatePartitionInfo(FsDeviceOperator *d, const FsGameCardHandle *handle, u32 *out_title_version, u64 *out_title_id);
|
|
|
|
#endif /* __FS_EXT_H__ */
|