hid: Stub HidD_SetFeature.

This commit is contained in:
Andrew Nguyen 2009-02-23 04:25:25 -06:00 committed by Alexandre Julliard
parent 45a1f85d15
commit 8dc97882f3
3 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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;
}

View File

@ -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 */