using Ryujinx.HLE.HOS.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Lm { [Service("lm")] class ILogService : IpcService { private Dictionary _commands; public override IReadOnlyDictionary Commands => _commands; public ILogService(ServiceCtx context) { _commands = new Dictionary { { 0, Initialize } }; } public long Initialize(ServiceCtx context) { MakeObject(context, new ILogger()); return 0; } } }