Module: wine Branch: master Commit: 1f72c13a5ae2661cd8ca947913b959824d5e6d8b URL: http://source.winehq.org/git/wine.git/?a=commit;h=1f72c13a5ae2661cd8ca947913...
Author: Vitaliy Margolen wine-patches@kievinfo.com Date: Fri Jul 6 07:25:47 2007 -0600
dinput: Correct test - use appropriate mouse state structure.
---
dlls/dinput/tests/mouse.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dinput/tests/mouse.c b/dlls/dinput/tests/mouse.c index de6bff0..0f9c88b 100644 --- a/dlls/dinput/tests/mouse.c +++ b/dlls/dinput/tests/mouse.c @@ -72,7 +72,7 @@ static void test_acquire(LPDIRECTINPUT pDI, HWND hwnd) { HRESULT hr; LPDIRECTINPUTDEVICE pMouse = NULL; - DIMOUSESTATE2 m_state; + DIMOUSESTATE m_state;
hr = IDirectInput_CreateDevice(pDI, &GUID_SysMouse, &pMouse, NULL); ok(SUCCEEDED(hr), "IDirectInput_CreateDevice() failed: %s\n", DXGetErrorString8(hr));