summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_common_functions.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-31 02:51:23 +0100
committerLiam <byteslice@airmail.cc>2024-01-30 00:43:45 +0100
commit7de6b410305fcfcd34078e62fbe0ceedb43663f9 (patch)
treeb5f3dc0d7631852a64466f3765e62e0707b8d0c8 /src/core/hle/service/am/applet_common_functions.cpp
parentMerge pull request #12846 from german77/mii_const (diff)
downloadyuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.gz
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.bz2
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.lz
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.xz
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.zst
yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.zip
Diffstat (limited to 'src/core/hle/service/am/applet_common_functions.cpp')
-rw-r--r--src/core/hle/service/am/applet_common_functions.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applet_common_functions.cpp b/src/core/hle/service/am/applet_common_functions.cpp
new file mode 100644
index 000000000..81c01a48b
--- /dev/null
+++ b/src/core/hle/service/am/applet_common_functions.cpp
@@ -0,0 +1,47 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/am/applet_common_functions.h"
+#include "core/hle/service/ipc_helpers.h"
+
+namespace Service::AM {
+
+IAppletCommonFunctions::IAppletCommonFunctions(Core::System& system_)
+ : ServiceFramework{system_, "IAppletCommonFunctions"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "SetTerminateResult"},
+ {10, nullptr, "ReadThemeStorage"},
+ {11, nullptr, "WriteThemeStorage"},
+ {20, nullptr, "PushToAppletBoundChannel"},
+ {21, nullptr, "TryPopFromAppletBoundChannel"},
+ {40, nullptr, "GetDisplayLogicalResolution"},
+ {42, nullptr, "SetDisplayMagnification"},
+ {50, nullptr, "SetHomeButtonDoubleClickEnabled"},
+ {51, nullptr, "GetHomeButtonDoubleClickEnabled"},
+ {52, nullptr, "IsHomeButtonShortPressedBlocked"},
+ {60, nullptr, "IsVrModeCurtainRequired"},
+ {61, nullptr, "IsSleepRequiredByHighTemperature"},
+ {62, nullptr, "IsSleepRequiredByLowBattery"},
+ {70, &IAppletCommonFunctions::SetCpuBoostRequestPriority, "SetCpuBoostRequestPriority"},
+ {80, nullptr, "SetHandlingCaptureButtonShortPressedMessageEnabledForApplet"},
+ {81, nullptr, "SetHandlingCaptureButtonLongPressedMessageEnabledForApplet"},
+ {90, nullptr, "OpenNamedChannelAsParent"},
+ {91, nullptr, "OpenNamedChannelAsChild"},
+ {100, nullptr, "SetApplicationCoreUsageMode"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+}
+
+IAppletCommonFunctions::~IAppletCommonFunctions() = default;
+
+void IAppletCommonFunctions::SetCpuBoostRequestPriority(HLERequestContext& ctx) {
+ LOG_WARNING(Service_AM, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(ResultSuccess);
+}
+
+} // namespace Service::AM