2020-07-27 01:04:08 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface.ShopServiceAccessServer;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface
|
|
|
|
|
{
|
|
|
|
|
class IShopServiceAccessServer : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IShopServiceAccessServer() { }
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2020-07-27 01:04:08 +02:00
|
|
|
|
// CreateAccessorInterface(u8) -> object<nn::ec::IShopServiceAccessor>
|
|
|
|
|
public ResultCode CreateAccessorInterface(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(context, new IShopServiceAccessor(context.Device.System));
|
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNim);
|
2020-07-27 01:04:08 +02:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|