mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-10 13:09:05 +00:00
Move solution and projects to src
This commit is contained in:
22
src/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
Normal file
22
src/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Ngct
|
||||
{
|
||||
[Service("ngct:u")] // 9.0.0+
|
||||
class IService : IpcService
|
||||
{
|
||||
public IService(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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user