service/notif: Add notif:a and stub ListAlarmSettings,Initialize

Used by ring fit adventure 1.2.0
This commit is contained in:
german77
2021-12-05 22:55:23 -06:00
committed by Narr the Reg
parent fae07919af
commit ac1bfe228f
6 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
}
namespace Service::Glue {
class NOTIF_A final : public ServiceFramework<NOTIF_A> {
public:
explicit NOTIF_A(Core::System& system_);
~NOTIF_A() override;
private:
void ListAlarmSettings(Kernel::HLERequestContext& ctx);
void Initialize(Kernel::HLERequestContext& ctx);
};
} // namespace Service::Glue