Add files via upload

This commit is contained in:
Tsubasa0504 2024-07-29 23:51:25 +09:00 committed by GitHub
parent 6ce49a2dc7
commit 09e2662ad3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}
}