diff options
| author | David <25727384+ogniK5377@users.noreply.github.com> | 2018-08-24 08:31:45 +1000 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-08-23 18:31:45 -0400 |
| commit | 5049ca5d8c667ed973ad3ed83d82369243b2a16b (patch) | |
| tree | fc8f62d63f32f44954594ae169778ebea59bf113 /src/core/hle/service/pm/pm.cpp | |
| parent | 0dce6d70083d07daa44aebdbf72e1d88e05a63f5 (diff) | |
Added GetBootMode (#1107)
* Added GetBootMode
Used by homebrew
* Added enum for GetBootMode
Diffstat (limited to 'src/core/hle/service/pm/pm.cpp')
| -rw-r--r-- | src/core/hle/service/pm/pm.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/core/hle/service/pm/pm.cpp b/src/core/hle/service/pm/pm.cpp index e20a25689..6ec35ca60 100644 --- a/src/core/hle/service/pm/pm.cpp +++ b/src/core/hle/service/pm/pm.cpp @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include "core/hle/ipc_helpers.h" +#include "core/hle/service/pm/pm.h" #include "core/hle/service/service.h" namespace Service::PM { @@ -10,11 +12,20 @@ class BootMode final : public ServiceFramework<BootMode> { public: explicit BootMode() : ServiceFramework{"pm:bm"} { static const FunctionInfo functions[] = { - {0, nullptr, "GetBootMode"}, + {0, &BootMode::GetBootMode, "GetBootMode"}, {1, nullptr, "SetMaintenanceBoot"}, }; RegisterHandlers(functions); } + +private: + void GetBootMode(Kernel::HLERequestContext& ctx) { + IPC::ResponseBuilder rb{ctx, 3}; + rb.Push(RESULT_SUCCESS); + rb.Push<u32>(static_cast<u32>(SystemBootMode::Normal)); // Normal boot mode + + LOG_DEBUG(Service_PM, "called"); + } }; class DebugMonitor final : public ServiceFramework<DebugMonitor> { |
