2022-08-18 18:04:54 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ngct
|
2020-12-10 03:08:28 +01:00
|
|
|
|
{
|
|
|
|
|
[Service("ngct:u")] // 9.0.0+
|
|
|
|
|
class IService : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IService(ServiceCtx context) { }
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2020-12-10 03:08:28 +01:00
|
|
|
|
// Match(buffer<string, 9>) -> b8
|
|
|
|
|
public ResultCode Match(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
return NgctServer.Match(context);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(1)]
|
2020-12-10 03:08:28 +01:00
|
|
|
|
// Filter(buffer<string, 9>) -> buffer<filtered_string, 10>
|
|
|
|
|
public ResultCode Filter(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
return NgctServer.Filter(context);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|