
* 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
13 lines
415 B
C#
13 lines
415 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Arp
|
|
{
|
|
public interface IUpdater
|
|
{
|
|
public Result Issue();
|
|
public Result SetApplicationProcessProperty(ulong pid, ApplicationProcessProperty applicationProcessProperty);
|
|
public Result DeleteApplicationProcessProperty();
|
|
public Result SetApplicationCertificate(ApplicationCertificate applicationCertificate);
|
|
}
|
|
}
|