using Ryujinx.HLE.Logging; using Ryujinx.HLE.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.OsHle.Services.Am { class IAppletAccessor : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IAppletAccessor() { m_Commands = new Dictionary() { { 0, GetAppletStateChangedEvent }, { 1, IsCompleted }, { 10, Start }, { 20, RequestExit }, { 25, Terminate }, { 30, GetResult } }; } public long GetAppletStateChangedEvent(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } public long IsCompleted(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } public long Start(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } public long RequestExit(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } public long Terminate(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } public long GetResult(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; } } }