using Ryujinx.Core.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Am { class IApplicationProxyService : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IApplicationProxyService() { m_Commands = new Dictionary() { { 0, OpenApplicationProxy } }; } public long OpenApplicationProxy(ServiceCtx Context) { MakeObject(Context, new IApplicationProxy()); return 0; } } }