Ryujinx/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs
2023-04-14 20:00:34 -03:00

21 lines
No EOL
683 B
C#

using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface.ShopServiceAccessServer;
namespace Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface
{
class IShopServiceAccessServer : IpcService
{
public IShopServiceAccessServer() { }
[CommandCmif(0)]
// CreateAccessorInterface(u8) -> object<nn::ec::IShopServiceAccessor>
public ResultCode CreateAccessorInterface(ServiceCtx context)
{
MakeObject(context, new IShopServiceAccessor(context.Device.System));
Logger.Stub?.PrintStub(LogClass.ServiceNim);
return ResultCode.Success;
}
}
}