aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs
blob: 46a5f17c97def9ef9d9f2638aa12f957705c9f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Utilities;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Friend
{
    class INotificationService : IpcService
    {
        private UInt128 _userId;

        private Dictionary<int, ServiceProcessRequest> _commands;

        public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;

        public INotificationService(UInt128 userId)
        {
            _commands = new Dictionary<int, ServiceProcessRequest>
            {
              //{ 0, GetEvent },
              //{ 1, Pop      },
              //{ 2, Clear    },
            };

            _userId = userId;
        }
    }
}