aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/mm/mm_u.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-06-07 02:00:04 -0400
committerGitHub <noreply@github.com>2018-06-07 02:00:04 -0400
commitee1eb8cfdfa5502f2e27ecaab4e37d1e59eee3c5 (patch)
tree014ec98abac52d8a6e6ed61b93a795bf8699edc3 /src/core/hle/service/mm/mm_u.h
parent0639e030551c3cf669602cf5b15d039e71690da6 (diff)
parenta776464a55f078dcadc54bf69eeeda766586583f (diff)
Merge pull request #522 from mailwl/mm-u
Service/MM: add service and stub some functions
Diffstat (limited to 'src/core/hle/service/mm/mm_u.h')
-rw-r--r--src/core/hle/service/mm/mm_u.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/core/hle/service/mm/mm_u.h b/src/core/hle/service/mm/mm_u.h
new file mode 100644
index 000000000..79eeedf9c
--- /dev/null
+++ b/src/core/hle/service/mm/mm_u.h
@@ -0,0 +1,29 @@
+// 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::MM {
+
+class MM_U final : public ServiceFramework<MM_U> {
+public:
+ MM_U();
+ ~MM_U() = default;
+
+private:
+ void Initialize(Kernel::HLERequestContext& ctx);
+ void SetAndWait(Kernel::HLERequestContext& ctx);
+ void Get(Kernel::HLERequestContext& ctx);
+
+ u32 min{0};
+ u32 max{0};
+ u32 current{0};
+};
+
+/// Registers all MM services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager);
+
+} // namespace Service::MM