aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs
blob: 294c7d58df41153fbcbc0732d1f4b0c52ae9493f (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
using Ryujinx.Horizon.Sdk.Sf.Hipc;
using System;

namespace Ryujinx.Horizon.Sdk.Sf
{
    [AttributeUsage(AttributeTargets.Parameter)]
    class BufferAttribute : Attribute
    {
        public HipcBufferFlags Flags     { get; }
        public ushort          FixedSize { get; }

        public BufferAttribute(HipcBufferFlags flags)
        {
            Flags = flags;
        }

        public BufferAttribute(HipcBufferFlags flags, ushort fixedSize)
        {
            Flags     = flags | HipcBufferFlags.FixedSize;
            FixedSize = fixedSize;
        }
    }

    [AttributeUsage(AttributeTargets.Parameter)]
    class ClientProcessIdAttribute : Attribute
    {
    }

    [AttributeUsage(AttributeTargets.Parameter)]
    class CopyHandleAttribute : Attribute
    {
    }

    [AttributeUsage(AttributeTargets.Parameter)]
    class MoveHandleAttribute : Attribute
    {
    }
}