Ryujinx/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs
2023-04-14 20:00:34 -03:00

22 lines
606 B
C#

namespace Ryujinx.HLE.HOS.Services.Ngct
{
[Service("ngct:s")] // 9.0.0+
class IServiceWithManagementApi : IpcService
{
public IServiceWithManagementApi(ServiceCtx context) { }
[CommandCmif(0)]
// Match(buffer<string, 9>) -> b8
public ResultCode Match(ServiceCtx context)
{
return NgctServer.Match(context);
}
[CommandCmif(1)]
// Filter(buffer<string, 9>) -> buffer<filtered_string, 10>
public ResultCode Filter(ServiceCtx context)
{
return NgctServer.Filter(context);
}
}
}