CommandArgType.cs
1 namespace Ryujinx.Horizon.Generators.Hipc 2 { 3 enum CommandArgType : byte 4 { 5 Invalid, 6 7 Buffer, 8 InArgument, 9 InCopyHandle, 10 InMoveHandle, 11 InObject, 12 OutArgument, 13 OutCopyHandle, 14 OutMoveHandle, 15 OutObject, 16 ProcessId, 17 } 18 }