mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-07 00:17:44 +02:00
17 lines
356 B
C#
17 lines
356 B
C#
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,
|
|
}
|
|
}
|