mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
xinput1_3: Added stub code for XInputGetKeystroke.
This commit is contained in:
parent
3ad7f77298
commit
ac3e24c5c9
@ -1,7 +1,7 @@
|
||||
@ stdcall XInputEnable(long)
|
||||
@ stdcall XInputSetState(long ptr)
|
||||
@ stdcall XInputGetState(long ptr)
|
||||
@ stub XInputGetKeystroke #(long long ptr)
|
||||
@ stdcall XInputGetKeystroke(long long ptr)
|
||||
@ stdcall XInputGetCapabilities(long long ptr)
|
||||
@ stub XInputGetDSoundAudioDeviceGuids #(long ptr ptr)
|
||||
@ stub XInputGetBatteryInformation
|
||||
|
@ -79,6 +79,18 @@ DWORD WINAPI XInputGetState(DWORD dwUserIndex, XINPUT_STATE* pState)
|
||||
return ERROR_BAD_ARGUMENTS;
|
||||
}
|
||||
|
||||
DWORD WINAPI XInputGetKeystroke(DWORD dwUserIndex, DWORD dwReserve, PXINPUT_KEYSTROKE pKeystroke)
|
||||
{
|
||||
FIXME("(%d %d %p) Stub!\n", dwUserIndex, dwReserve, pKeystroke);
|
||||
|
||||
if (dwUserIndex < XUSER_MAX_COUNT)
|
||||
{
|
||||
return ERROR_DEVICE_NOT_CONNECTED;
|
||||
/* If controller exists then return ERROR_SUCCESS */
|
||||
}
|
||||
return ERROR_BAD_ARGUMENTS;
|
||||
}
|
||||
|
||||
DWORD WINAPI XInputGetCapabilities(DWORD dwUserIndex, DWORD dwFlags, XINPUT_CAPABILITIES* pCapabilities)
|
||||
{
|
||||
FIXME("(%d %d %p)\n", dwUserIndex, dwFlags, pCapabilities);
|
||||
|
Loading…
Reference in New Issue
Block a user