Commit 45a1f85d authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

hid: Stub HidD_GetFeature.

parent 1f5c71fa
......@@ -2,7 +2,7 @@
@ stub HidD_FreePreparsedData
@ stub HidD_GetAttributes
@ stub HidD_GetConfiguration
@ stub HidD_GetFeature
@ stdcall HidD_GetFeature(long ptr long)
@ stdcall HidD_GetHidGuid(ptr)
@ stub HidD_GetIndexedString
@ stub HidD_GetInputReport
......
......@@ -50,6 +50,14 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
return TRUE;
}
BOOLEAN WINAPI HidD_GetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength)
{
static int count = 0;
if (!count++)
FIXME("(%p %p %u) stub\n", HidDeviceObject, ReportBuffer, ReportBufferLength);
return FALSE;
}
void WINAPI HidD_GetHidGuid(LPGUID guid)
{
TRACE("(%p)\n", guid);
......
......@@ -27,6 +27,7 @@
typedef LONG NTSTATUS;
#endif
BOOLEAN WINAPI HidD_GetFeature(HANDLE HidDeviceObject, PVOID ReportBuffer, ULONG ReportBufferLength);
void WINAPI HidD_GetHidGuid(LPGUID guid);
#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