summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/spl.h
diff options
context:
space:
mode:
authorzkitx <zkitx@zkitx.jp>2021-03-11 08:36:48 +0100
committerzkitx <zkitx@zkitx.jp>2021-03-11 08:36:48 +0100
commitad653550ebf9515c522d9c36f1409c440c427e8d (patch)
tree2d81444bf8fe377f5af023f5ebbfc07ad8454205 /src/core/hle/service/spl/spl.h
parentMerge pull request #5891 from ameerj/bgra-ogl (diff)
downloadyuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.gz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.bz2
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.lz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.xz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.zst
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/spl/spl.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/spl.h b/src/core/hle/service/spl/spl.h
index d27d16b86..9b35012ed 100644
--- a/src/core/hle/service/spl/spl.h
+++ b/src/core/hle/service/spl/spl.h
@@ -18,4 +18,34 @@ public:
~SPL() override;
};
+class SPL_MIG final : public Module::Interface {
+public:
+ explicit SPL_MIG(Core::System& system_, std::shared_ptr<Module> module_);
+ ~SPL_MIG() override;
+};
+
+class SPL_FS final : public Module::Interface {
+public:
+ explicit SPL_FS(Core::System& system_, std::shared_ptr<Module> module_);
+ ~SPL_FS() override;
+};
+
+class SPL_SSL final : public Module::Interface {
+public:
+ explicit SPL_SSL(Core::System& system_, std::shared_ptr<Module> module_);
+ ~SPL_SSL() override;
+};
+
+class SPL_ES final : public Module::Interface {
+public:
+ explicit SPL_ES(Core::System& system_, std::shared_ptr<Module> module_);
+ ~SPL_ES() override;
+};
+
+class SPL_MANU final : public Module::Interface {
+public:
+ explicit SPL_MANU(Core::System& system_, std::shared_ptr<Module> module_);
+ ~SPL_MANU() override;
+};
+
} // namespace Service::SPL