Ryujinx/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs

33 lines
864 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.FileSystem;
namespace Ryujinx.HLE.HOS.Services.Lr
{
class ILocationResolverManager : IpcService
{
2018-12-01 20:01:59 +00:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 20:01:59 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public ILocationResolverManager()
{
2018-12-01 20:01:59 +00:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, OpenLocationResolver },
};
}
// OpenLocationResolver()
2018-12-01 20:01:59 +00:00
private long OpenLocationResolver(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
StorageId storageId = (StorageId)context.RequestData.ReadByte();
2018-12-01 20:01:59 +00:00
MakeObject(context, new ILocationResolver(storageId));
return 0;
}
}
}