Add files via upload
This commit is contained in:
parent
6ce49a2dc7
commit
09e2662ad3
1 changed files with 13 additions and 0 deletions
|
@ -40,5 +40,18 @@ namespace Ryujinx.HLE.HOS.Services.Nim
|
|||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
|
||||
[CommandCmif(5)] //17.0.0+
|
||||
// CreateServerInterface2(pid, handle<unknown>, u64) -> object<nn::ec::IshopServiceAccessServer>
|
||||
public ResultCode CreateServerInterface2(ServiceCtx context)
|
||||
{
|
||||
context.Device.System.KernelContext.Syscall.CloseHandle(context.Request.HandleDesc.ToCopy[0]);
|
||||
|
||||
MakeObject(context, new IShopServiceAccessServer());
|
||||
|
||||
Logger.Stub?.PrintStub(LogClass.ServiceNim);
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue