IServiceWithManagementApi.cs 606 B

12345678910111213141516171819202122
  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. [CommandHipc(0)]
  8. // Match(buffer<string, 9>) -> b8
  9. public ResultCode Match(ServiceCtx context)
  10. {
  11. return NgctServer.Match(context);
  12. }
  13. [CommandHipc(1)]
  14. // Filter(buffer<string, 9>) -> buffer<filtered_string, 10>
  15. public ResultCode Filter(ServiceCtx context)
  16. {
  17. return NgctServer.Filter(context);
  18. }
  19. }
  20. }