blob: 0d77dd6e6d2637c18d5c1481cea914bd9fe8d87f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace Ryujinx.HLE.HOS.Services.Notification
{
[Service("notif:a")] // 9.0.0+
class INotificationServicesForApplication : IpcService
{
public INotificationServicesForApplication(ServiceCtx context) { }
}
}
|