using Ryujinx.Core.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Hid { class IActiveApplicationDeviceList : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IActiveApplicationDeviceList() { m_Commands = new Dictionary() { { 0, ActivateVibrationDevice } }; } public long ActivateVibrationDevice(ServiceCtx Context) { int VibrationDeviceHandle = Context.RequestData.ReadInt32(); return 0; } } }