mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-19 05:36:40 +00:00
21 lines
No EOL
683 B
C#
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;
|
|
}
|
|
}
|
|
} |