Commit 8dc97882 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

hid: Stub HidD_SetFeature.

parent 45a1f85d
......@@ -15,7 +15,7 @@
@ stub HidD_GetSerialNumberString
@ stub HidD_Hello
@ stub HidD_SetConfiguration
@ stub HidD_SetFeature
@ stdcall HidD_SetFeature(long ptr long)
@ stub HidD_SetNumInputBuffers
@ stub HidD_SetOutputReport
@ stub HidP_GetButtonCaps
......
......@@ -63,3 +63,9 @@ void WINAPI HidD_GetHidGuid(LPGUID guid)
TRACE("(%p)\n", guid);
*guid = HID_GUID;
}
BOOLEAN WINAPI HidD_SetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength)
{
FIXME("(%p %p %u) stub\n", HidDeviceObject, ReportBuffer, ReportBufferLength);
return FALSE;
}
......@@ -29,5 +29,6 @@ typedef LONG NTSTATUS;
BOOLEAN WINAPI HidD_GetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength);
void WINAPI HidD_GetHidGuid(LPGUID guid);
BOOLEAN WINAPI HidD_SetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength);
#endif /* __WINE_HIDSDI_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment