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/OsHle/Ipc/IpcMessageType.cs

12 lines
262 B
C#
Raw Normal View History

namespace Ryujinx.HLE.OsHle.Ipc
2018-02-04 23:08:20 +00:00
{
enum IpcMessageType
{
Response = 0,
CloseSession = 2,
Request = 4,
Control = 5,
RequestWithContext = 6,
ControlWithContext = 7
2018-02-04 23:08:20 +00:00
}
}