blob: f6f0e0682e4870ecbadc707ef1f7a6f76c37270e (
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
{
}
}
|