mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 16:50:18 +00:00
15 lines
331 B
C#
15 lines
331 B
C#
|
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|||
|
{
|
|||
|
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
|
|||
|
}
|
|||
|
}
|