mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 18:00:47 -07:00
Horizon: Implement arp:r and arp:w services (#5802)
* 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
This commit is contained in:
12
src/Ryujinx.Horizon/Sdk/Arp/IUpdater.cs
Normal file
12
src/Ryujinx.Horizon/Sdk/Arp/IUpdater.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user