aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs
blob: 269ab4fe58a73c02f4054c3897d1700af87b4511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Ryujinx.Horizon.Sdk.Sf.Hipc
{
    [Flags]
    enum HipcBufferFlags : byte
    {
        In                         = 1 << 0,
        Out                        = 1 << 1,
        MapAlias                   = 1 << 2,
        Pointer                    = 1 << 3,
        FixedSize                  = 1 << 4,
        AutoSelect                 = 1 << 5,
        MapTransferAllowsNonSecure = 1 << 6,
        MapTransferAllowsNonDevice = 1 << 7
    }
}