More reorganisation

This commit is contained in:
jduncanator 2019-11-14 16:05:42 +11:00
parent 70709ab5bf
commit 429a27cd75
6 changed files with 9 additions and 8 deletions

View file

@ -1,4 +1,5 @@
using System;
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using System;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Applets

View file

@ -1,4 +1,4 @@
using Ryujinx.HLE.HOS.Services.Am;
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using System;
namespace Ryujinx.HLE.HOS.Applets

View file

@ -1,5 +1,5 @@
using Ryujinx.HLE.HOS.Services.Account.Acc;
using Ryujinx.HLE.HOS.Services.Am;
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using System;
using System.IO;

View file

@ -11,10 +11,10 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
// CreateLibraryApplet(u32, u32) -> object<nn::am::service::ILibraryAppletAccessor>
public ResultCode CreateLibraryApplet(ServiceCtx context)
{
int appletId = context.RequestData.ReadInt32();
int libraryAppletMode = context.RequestData.ReadInt32();
AppletId appletId = (AppletId)context.RequestData.ReadInt32();
int libraryAppletMode = context.RequestData.ReadInt32();
MakeObject(context, new ILibraryAppletAccessor((AppletId)appletId, context.Device.System));
MakeObject(context, new ILibraryAppletAccessor(appletId, context.Device.System));
return ResultCode.Success;
}

View file

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
{
internal class AppletFifo<T> : IEnumerable<T>
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Applets
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
{
enum AppletId
{