2020-07-26 23:04:08 +00: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-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(0)]
|
2020-07-26 23:04:08 +00:00
|
|
|
|
// CreateAccessorInterface(u8) -> object<nn::ec::IShopServiceAccessor>
|
|
|
|
|
public ResultCode CreateAccessorInterface(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(context, new IShopServiceAccessor(context.Device.System));
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNim);
|
2020-07-26 23:04:08 +00:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|