Commit 8ada79d1 authored by 's avatar Committed by Alexandre Julliard

Devices never need to be polled, so return DI_NOEFFECT in Poll.

parent 9e5af61e
...@@ -498,9 +498,8 @@ HRESULT WINAPI IDirectInputDevice2AImpl_Escape( ...@@ -498,9 +498,8 @@ HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
HRESULT WINAPI IDirectInputDevice2AImpl_Poll( HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
LPDIRECTINPUTDEVICE2A iface) LPDIRECTINPUTDEVICE2A iface)
{ {
FIXME("(this=%p): stub!\n", /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
iface); return DI_NOEFFECT;
return DI_OK;
} }
HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData( HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
......
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