mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-24 21:57:44 +02:00

* Add support for events, move concept of domains to IpcService * Support waiting for KThread, remove some test code, other tweaks * Use move handle on NIFM since I can't test that now, it's better to leave it how it was
10 lines
No EOL
263 B
C#
10 lines
No EOL
263 B
C#
namespace Ryujinx.Core.OsHle
|
|
{
|
|
static class KernelErr
|
|
{
|
|
public const int InvalidMemRange = 110;
|
|
public const int InvalidHandle = 114;
|
|
public const int Timeout = 117;
|
|
public const int InvalidInfo = 120;
|
|
}
|
|
} |