mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-06 07:17:53 +00:00
ca25a3845e
* am: Update function tables and add missing classes * Remove comments (1/5) * Remove comments (2/5) * Remove comments (3/5) * Remove comments (4/5) * Remove comments (5/5) * Remove unused classes (1/2) * Remove unused classes (2/2)
32 lines
1,010 B
C++
32 lines
1,010 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/service/am/spsm.h"
|
|
|
|
namespace Service::AM {
|
|
|
|
SPSM::SPSM() : ServiceFramework{"spsm"} {
|
|
// clang-format off
|
|
static const FunctionInfo functions[] = {
|
|
{0, nullptr, "GetState"},
|
|
{1, nullptr, "EnterSleep"},
|
|
{2, nullptr, "GetLastWakeReason"},
|
|
{3, nullptr, "Shutdown"},
|
|
{4, nullptr, "GetNotificationMessageEventHandle"},
|
|
{5, nullptr, "ReceiveNotificationMessage"},
|
|
{6, nullptr, "AnalyzeLogForLastSleepWakeSequence"},
|
|
{7, nullptr, "ResetEventLog"},
|
|
{8, nullptr, "AnalyzePerformanceLogForLastSleepWakeSequence"},
|
|
{9, nullptr, "ChangeHomeButtonLongPressingTime"},
|
|
{10, nullptr, "PutErrorState"},
|
|
{11, nullptr, "InvalidateCurrentHomeButtonPressing"},
|
|
};
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
|
}
|
|
|
|
SPSM::~SPSM() = default;
|
|
|
|
} // namespace Service::AM
|