mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-16 04:01:25 +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
26 lines
757 B
C#
26 lines
757 B
C#
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Arp;
|
|
using Ryujinx.Horizon.Sdk.Arp.Detail;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
|
|
namespace Ryujinx.Horizon.Arp.Ipc
|
|
{
|
|
partial class UnregistrationNotifier : IUnregistrationNotifier, IServiceObject
|
|
{
|
|
private readonly ApplicationInstanceManager _applicationInstanceManager;
|
|
|
|
public UnregistrationNotifier(ApplicationInstanceManager applicationInstanceManager)
|
|
{
|
|
_applicationInstanceManager = applicationInstanceManager;
|
|
}
|
|
|
|
[CmifCommand(0)]
|
|
public Result GetReadableHandle([CopyHandle] out int readableHandle)
|
|
{
|
|
readableHandle = _applicationInstanceManager.EventHandle;
|
|
|
|
return Result.Success;
|
|
}
|
|
}
|
|
}
|