mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 12:17:43 +02:00
10 lines
No EOL
200 B
C#
10 lines
No EOL
200 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
enum KernelResult
|
|
{
|
|
Success = 0,
|
|
HandleTableFull = 0xd201,
|
|
InvalidHandle = 0xe401,
|
|
InvalidState = 0xfa01
|
|
}
|
|
} |