0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs

13 lines
322 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Ipc
2018-02-04 23:08:20 +00:00
{
enum IpcMessageType
{
HipcResponse = 0,
HipcCloseSession = 2,
HipcRequest = 4,
HipcControl = 5,
HipcRequestWithContext = 6,
HipcControlWithContext = 7,
TipcCloseSession = 0xF
2018-02-04 23:08:20 +00:00
}
}