On 25.06.2015 18:15, Aric Stewart wrote:
> BOOLEAN WINAPI HidD_SetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength)
> {
> - FIXME("(%p %p %u) stub\n", HidDeviceObject, ReportBuffer, ReportBufferLength);
> - return FALSE;
> + TRACE("(%p %p %u)\n", HidDeviceObject, ReportBuffer, ReportBufferLength);
> + return DeviceIoControl(HidDeviceObject, IOCTL_HID_SET_OUTPUT_REPORT, ReportBuffer, ReportBufferLength, NULL, 0, NULL, NULL);
> }
I can't say I know anything about that, but this looks like a typo,
maybe it should use IOCTL_HID_SET_FEATURE?