summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/spl_module.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-07-14 06:52:17 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-07-14 08:09:14 +0200
commitc6d7da88c7ab125279ea4ccad0e3e839632b2f7a (patch)
tree8591def7815ce7cc9156d87e0d62567584db1a23 /src/core/hle/service/spl/spl_module.h
parentapplets: Append applet_ prefix to backend applets (diff)
downloadyuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.gz
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.bz2
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.lz
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.xz
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.zst
yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.zip
Diffstat (limited to 'src/core/hle/service/spl/spl_module.h')
-rw-r--r--src/core/hle/service/spl/spl_module.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/spl_module.h b/src/core/hle/service/spl/spl_module.h
new file mode 100644
index 000000000..61630df80
--- /dev/null
+++ b/src/core/hle/service/spl/spl_module.h
@@ -0,0 +1,48 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <random>
+#include "core/hle/service/service.h"
+#include "core/hle/service/spl/spl_results.h"
+#include "core/hle/service/spl/spl_types.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::SPL {
+
+class Module final {
+public:
+ class Interface : public ServiceFramework<Interface> {
+ public:
+ explicit Interface(Core::System& system_, std::shared_ptr<Module> module_,
+ const char* name);
+ ~Interface() override;
+
+ // General
+ void GetConfig(Kernel::HLERequestContext& ctx);
+ void ModularExponentiate(Kernel::HLERequestContext& ctx);
+ void SetConfig(Kernel::HLERequestContext& ctx);
+ void GenerateRandomBytes(Kernel::HLERequestContext& ctx);
+ void IsDevelopment(Kernel::HLERequestContext& ctx);
+ void SetBootReason(Kernel::HLERequestContext& ctx);
+ void GetBootReason(Kernel::HLERequestContext& ctx);
+
+ protected:
+ std::shared_ptr<Module> module;
+
+ private:
+ ResultVal<u64> GetConfigImpl(ConfigItem config_item) const;
+
+ std::mt19937 rng;
+ };
+};
+
+/// Registers all SPL services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
+
+} // namespace Service::SPL