mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-06 04:19:15 +00:00
18 lines
547 B
C#
18 lines
547 B
C#
using Ryujinx.Common.Logging;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Notification
|
|
{
|
|
class INotificationSystemEventAccessor : IpcService
|
|
{
|
|
public INotificationSystemEventAccessor(ServiceCtx context) { }
|
|
|
|
[CommandCmif(0)] // 9.0.0+
|
|
// GetNotificationSendingNotifier() -> nn::notification::server::INotificationSystemEventAccessor
|
|
public ResultCode GetSystemEvent(ServiceCtx context)
|
|
{
|
|
Logger.Stub?.PrintStub(LogClass.Service);
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
}
|