aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Friends/Detail/Ipc/SizedNotificationInfo.cs
blob: 0da26a1ae008fa9a816eab536e56dfd489d3326f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Ryujinx.Horizon.Sdk.Account;
using System.Runtime.InteropServices;

namespace Ryujinx.Horizon.Sdk.Friends.Detail.Ipc
{
    [StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 0x8)]
    struct SizedNotificationInfo
    {
        public NotificationEventType Type;
        public uint Padding;
        public NetworkServiceAccountId NetworkUserIdPlaceholder;
    }
}