IServiceWithManagementApi.cs
1 namespace Ryujinx.HLE.HOS.Services.Ngct 2 { 3 [Service("ngct:s")] // 9.0.0+ 4 class IServiceWithManagementApi : IpcService 5 { 6 public IServiceWithManagementApi(ServiceCtx context) { } 7 8 [CommandCmif(0)] 9 // Match(buffer<string, 9>) -> b8 10 public ResultCode Match(ServiceCtx context) 11 { 12 return NgctServer.Match(context); 13 } 14 15 [CommandCmif(1)] 16 // Filter(buffer<string, 9>) -> buffer<filtered_string, 10> 17 public ResultCode Filter(ServiceCtx context) 18 { 19 return NgctServer.Filter(context); 20 } 21 } 22 }