2020-07-26 23:04:08 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nim
|
2019-09-19 00:45:11 +00:00
|
|
|
|
{
|
|
|
|
|
[Service("nim:eca")] // 5.0.0+
|
|
|
|
|
class IShopServiceAccessServerInterface : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IShopServiceAccessServerInterface(ServiceCtx context) { }
|
2020-07-26 23:04:08 +00:00
|
|
|
|
|
|
|
|
|
[Command(0)]
|
|
|
|
|
// CreateServerInterface(pid, handle<unknown>, u64) -> object<nn::ec::IShopServiceAccessServer>
|
|
|
|
|
public ResultCode CreateServerInterface(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(context, new IShopServiceAccessServer());
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNim);
|
2020-07-26 23:04:08 +00:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-09-19 00:45:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|