mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-08 10:56:26 -05:00
Made initial implementation of the thread scheduler, refactor Svc to avoid passing many arguments
This commit is contained in:
11
Ryujinx/OsHle/Svc/SvcResult.cs
Normal file
11
Ryujinx/OsHle/Svc/SvcResult.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Ryujinx.OsHle.Svc
|
||||
{
|
||||
enum SvcResult
|
||||
{
|
||||
Success = 0,
|
||||
ErrBadHandle = 0xe401,
|
||||
ErrTimeout = 0xea01,
|
||||
ErrBadInfo = 0xf001,
|
||||
ErrBadIpcReq = 0xf601
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user