summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/filesystem.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-04 21:49:42 +0100
committerGitHub <noreply@github.com>2018-03-04 21:49:42 +0100
commit80562aaf64413f5740138dba70393789d10de580 (patch)
tree01b8f6a28202295b25eaa90e8cbbef5a9b3c0c6f /src/core/hle/service/filesystem/filesystem.h
parentMerge pull request #228 from Subv/unschedule_events (diff)
parentFS: Use the correct error code when trying to open files that don't exist. (diff)
downloadyuzu-80562aaf64413f5740138dba70393789d10de580.tar
yuzu-80562aaf64413f5740138dba70393789d10de580.tar.gz
yuzu-80562aaf64413f5740138dba70393789d10de580.tar.bz2
yuzu-80562aaf64413f5740138dba70393789d10de580.tar.lz
yuzu-80562aaf64413f5740138dba70393789d10de580.tar.xz
yuzu-80562aaf64413f5740138dba70393789d10de580.tar.zst
yuzu-80562aaf64413f5740138dba70393789d10de580.zip
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.h')
-rw-r--r--src/core/hle/service/filesystem/filesystem.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.h b/src/core/hle/service/filesystem/filesystem.h
index 80f318676..8d30e94a1 100644
--- a/src/core/hle/service/filesystem/filesystem.h
+++ b/src/core/hle/service/filesystem/filesystem.h
@@ -44,6 +44,13 @@ ResultCode RegisterFileSystem(std::unique_ptr<FileSys::FileSystemFactory>&& fact
ResultVal<std::unique_ptr<FileSys::FileSystemBackend>> OpenFileSystem(Type type,
FileSys::Path& path);
+/**
+ * Formats a file system
+ * @param type Type of the file system to format
+ * @return ResultCode of the operation
+ */
+ResultCode FormatFileSystem(Type type);
+
/// Registers all Filesystem services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);