summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-04-23 14:35:33 +0200
committerZach Hilman <zachhilman@gmail.com>2019-09-21 22:50:39 +0200
commitc182688ad6e6c36be4a683e85bdcba05fdc92ba3 (patch)
treed36f8dd1020f006bdab4dae8bb4d84c922d168a0 /src/core/core.h
parentsettings: Add options for managing gamecard emulation (diff)
downloadyuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar.gz
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar.bz2
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar.lz
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar.xz
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.tar.zst
yuzu-c182688ad6e6c36be4a683e85bdcba05fdc92ba3.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 0138d93b0..bb2962fdd 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -47,6 +47,10 @@ namespace APM {
class Controller;
}
+namespace FileSystem {
+class FileSystemController;
+} // namespace FileSystem
+
namespace Glue {
class ARPManager;
}
@@ -299,6 +303,10 @@ public:
const FileSys::ContentProvider& GetContentProvider() const;
+ Service::FileSystem::FileSystemController& GetFileSystemController();
+
+ const Service::FileSystem::FileSystemController& GetFileSystemController() const;
+
void RegisterContentProvider(FileSys::ContentProviderUnionSlot slot,
FileSys::ContentProvider* provider);