mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-26 08:00:18 +00:00
* Horizon: Implement arp:r and arp:w services * Fix formatting * Remove HLE arp services * Revert "Remove HLE arp services" This reverts commit c576fcccadb963db56b96bacabd1c1ac7abfb1ab. * Keep LibHac impl since it's used in bcat * Addresses gdkchan's feedback * ArpApi in PrepoIpcServer and remove LmApi * Fix 2 * Fixes ArpApi init * Fix encoding * Update PrepoService.cs * Fix prepo
17 lines
619 B
C#
17 lines
619 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Arp
|
|
{
|
|
static class ArpResult
|
|
{
|
|
private const int ModuleId = 157;
|
|
|
|
public static Result InvalidArgument => new(ModuleId, 30);
|
|
public static Result InvalidPid => new(ModuleId, 31);
|
|
public static Result InvalidPointer => new(ModuleId, 32);
|
|
public static Result DataAlreadyBound => new(ModuleId, 42);
|
|
public static Result AllocationFailed => new(ModuleId, 63);
|
|
public static Result NoFreeInstance => new(ModuleId, 101);
|
|
public static Result InvalidInstanceId => new(ModuleId, 102);
|
|
}
|
|
}
|