Ryujinx/Ryujinx.HLE/HOS/Services/Am/IStorage.cs

31 lines
728 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
{
2018-12-01 21:38:15 +01:00
internal class IStorage : IpcService
{
2018-12-01 21:01:59 +01:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 21:01:59 +01:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public byte[] Data { get; private set; }
2018-12-01 21:01:59 +01:00
public IStorage(byte[] data)
{
2018-12-01 21:01:59 +01:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, Open }
};
2018-12-01 21:24:37 +01:00
Data = data;
}
2018-12-01 21:01:59 +01:00
public long Open(ServiceCtx context)
{
2018-12-01 21:01:59 +01:00
MakeObject(context, new IStorageAccessor(this));
return 0;
}
}
}