IShopServiceAccessServer.cs 683 B

123456789101112131415161718192021
  1. using Ryujinx.Common.Logging;
  2. using Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface.ShopServiceAccessServer;
  3. namespace Ryujinx.HLE.HOS.Services.Nim.ShopServiceAccessServerInterface
  4. {
  5. class IShopServiceAccessServer : IpcService
  6. {
  7. public IShopServiceAccessServer() { }
  8. [CommandHipc(0)]
  9. // CreateAccessorInterface(u8) -> object<nn::ec::IShopServiceAccessor>
  10. public ResultCode CreateAccessorInterface(ServiceCtx context)
  11. {
  12. MakeObject(context, new IShopServiceAccessor(context.Device.System));
  13. Logger.Stub?.PrintStub(LogClass.ServiceNim);
  14. return ResultCode.Success;
  15. }
  16. }
  17. }