Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using LibHac.Ncm;
|
||||
using Ryujinx.HLE.HOS.Services.Ncm.Lr.LocationResolverManager;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Ncm.Lr
|
||||
{
|
||||
[Service("lr")]
|
||||
class ILocationResolverManager : IpcService
|
||||
{
|
||||
public ILocationResolverManager(ServiceCtx context) { }
|
||||
|
||||
[CommandCmif(0)]
|
||||
// OpenLocationResolver()
|
||||
public ResultCode OpenLocationResolver(ServiceCtx context)
|
||||
{
|
||||
StorageId storageId = (StorageId)context.RequestData.ReadByte();
|
||||
|
||||
MakeObject(context, new ILocationResolver(storageId));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user