mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
7de7b559ad
* Improve kernel events implementation * Some cleanup * Address PR feedback
10 lines
200 B
C#
10 lines
200 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
enum KernelResult
|
|
{
|
|
Success = 0,
|
|
HandleTableFull = 0xd201,
|
|
InvalidHandle = 0xe401,
|
|
InvalidState = 0xfa01
|
|
}
|
|
} |