using Ryujinx.HLE.Logging; using Ryujinx.HLE.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.OsHle.Services.Acc { class IManagerForApplication : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IManagerForApplication() { m_Commands = new Dictionary() { { 0, CheckAvailability }, { 1, GetAccountId } }; } public long CheckAvailability(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed."); return 0; } public long GetAccountId(ServiceCtx Context) { Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed."); Context.ResponseData.Write(0xcafeL); return 0; } } }