Files
ryujinx/src/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs
Aaron Robinson 8e1e2d69df Make Cmif commands in HLE use virtual method invocation instead of reflection
# Conflicts:
#	src/Ryujinx.HLE/HOS/Services/IpcService.cs
2025-12-30 18:52:32 -06:00

23 lines
612 B
C#

namespace Ryujinx.HLE.HOS.Services.Ngct
{
[Service("ngct:s")] // 9.0.0+
partial 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);
}
}
}