mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:38:36 +00:00
27 lines
730 B
C#
27 lines
730 B
C#
using Ryujinx.HLE.OsHle.Ipc;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Hid
|
|
{
|
|
class IActiveApplicationDeviceList : IpcService
|
|
{
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
public IActiveApplicationDeviceList()
|
|
{
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
{
|
|
{ 0, ActivateVibrationDevice }
|
|
};
|
|
}
|
|
|
|
public long ActivateVibrationDevice(ServiceCtx Context)
|
|
{
|
|
int VibrationDeviceHandle = Context.RequestData.ReadInt32();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |