summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-01-17 04:20:12 +0100
committerbunnei <bunneidev@gmail.com>2018-01-21 21:39:28 +0100
commitd64b7d7dfda8123cc8e0d6abaf358a4a08ba795c (patch)
tree8131ceeb6ec598cf7cf83132a19cc6ab981a4ff0 /src/core/hle/service/filesystem/fsp_srv.h
parentfile_sys: Cleanup to better match Switch file system constructs. (diff)
downloadyuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar.gz
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar.bz2
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar.lz
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar.xz
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.tar.zst
yuzu-d64b7d7dfda8123cc8e0d6abaf358a4a08ba795c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.h b/src/core/hle/service/filesystem/fsp_srv.h
new file mode 100644
index 000000000..b41ba6bd1
--- /dev/null
+++ b/src/core/hle/service/filesystem/fsp_srv.h
@@ -0,0 +1,25 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace FileSystem {
+
+class FSP_SRV final : public ServiceFramework<FSP_SRV> {
+public:
+ FSP_SRV();
+ ~FSP_SRV() = default;
+
+private:
+ void Initalize(Kernel::HLERequestContext& ctx);
+ void GetGlobalAccessLogMode(Kernel::HLERequestContext& ctx);
+ void OpenDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx);
+ void OpenRomStorage(Kernel::HLERequestContext& ctx);
+};
+
+} // namespace Filesystem
+} // namespace Service