mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-08 13:36:26 -05:00
16 lines
477 B
C#
16 lines
477 B
C#
using Ryujinx.Horizon.Common;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
abstract class ServerDomainBase
|
|
{
|
|
public abstract Result ReserveIds(Span<int> outIds);
|
|
public abstract void UnreserveIds(ReadOnlySpan<int> ids);
|
|
public abstract void RegisterObject(int id, ServiceObjectHolder obj);
|
|
|
|
public abstract ServiceObjectHolder UnregisterObject(int id);
|
|
public abstract ServiceObjectHolder GetObject(int id);
|
|
}
|
|
}
|