mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-23 15:07:11 +02:00
Made initial implementation of the thread scheduler, refactor Svc to avoid passing many arguments
This commit is contained in:
parent
598d1fd3ae
commit
f68696dc4a
19 changed files with 740 additions and 252 deletions
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue