namespace Ryujinx.HLE.HOS.Services.Ns { [Service("ns:am2")] [Service("ns:ec")] class IServiceGetterInterface : IpcService { public IServiceGetterInterface(ServiceCtx context) { } [Command(7996)] // GetApplicationManagerInterface() -> object public long GetApplicationManagerInterface(ServiceCtx context) { MakeObject(context, new IApplicationManagerInterface(context)); return 0; } } }