2018-08-16 18:47:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Hid
|
2018-02-21 15:56:52 -06:00
|
|
|
{
|
2018-03-19 13:58:46 -05:00
|
|
|
class IActiveApplicationDeviceList : IpcService
|
2018-02-21 15:56:52 -06:00
|
|
|
{
|
2019-07-11 20:13:43 -05:00
|
|
|
public IActiveApplicationDeviceList() { }
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(0)]
|
|
|
|
// ActivateVibrationDevice(nn::hid::VibrationDeviceHandle)
|
2018-12-06 05:16:24 -06:00
|
|
|
public long ActivateVibrationDevice(ServiceCtx context)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int vibrationDeviceHandle = context.RequestData.ReadInt32();
|
2018-02-25 12:58:16 -06:00
|
|
|
|
|
|
|
return 0;
|
2018-02-21 15:56:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|