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