mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00

* Implement NGC service * Use raw byte arrays instead of string for _wordSeparators * Silence IDE0230 for _wordSeparators * Try to silence warning about _rangeValuesCount not being read on SparseSet * Make AcType enum private * Add abstract methods and one TODO that I forgot * PR feedback * More PR feedback * More PR feedback
17 lines
554 B
C#
17 lines
554 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Ngc
|
|
{
|
|
static class NgcResult
|
|
{
|
|
private const int ModuleId = 146;
|
|
|
|
public static Result InvalidPointer => new(ModuleId, 3);
|
|
public static Result InvalidSize => new(ModuleId, 4);
|
|
public static Result InvalidUtf8Encoding => new(ModuleId, 5);
|
|
public static Result AllocationFailed => new(ModuleId, 101);
|
|
public static Result DataAccessError => new(ModuleId, 102);
|
|
public static Result GenericUtf8Error => new(ModuleId, 103);
|
|
}
|
|
}
|