mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-29 21:52:22 +00:00
16 lines
462 B
C
16 lines
462 B
C
#pragma once
|
|
|
|
#ifndef __FSEXT_H__
|
|
#define __FSEXT_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
|