namespace Ryujinx.HLE.HOS.Services.Ns { [Service("ns:am2")] [Service("ns:ec")] [Service("ns:rid")] [Service("ns:rt")] [Service("ns:web")] class IServiceGetterInterface : IpcService { public IServiceGetterInterface(ServiceCtx context) { } [CommandHipc(7996)] // GetApplicationManagerInterface() -> object public ResultCode GetApplicationManagerInterface(ServiceCtx context) { MakeObject(context, new IApplicationManagerInterface(context)); return ResultCode.Success; } [CommandHipc(7989)] // GetReadOnlyApplicationControlDataInterface() -> object public ResultCode GetReadOnlyApplicationControlDataInterface(ServiceCtx context) { MakeObject(context, new IReadOnlyApplicationControlDataInterface(context)); return ResultCode.Success; } } }