Commit e9399800 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

dinput: Fix buffer size in test.

parent 78d50caf
...@@ -127,7 +127,7 @@ static void test_object_info(LPDIRECTINPUTDEVICE device, HWND hwnd) ...@@ -127,7 +127,7 @@ static void test_object_info(LPDIRECTINPUTDEVICE device, HWND hwnd)
ok(hr == DI_OK, "SetProperty() failed: %08x\n", hr); ok(hr == DI_OK, "SetProperty() failed: %08x\n", hr);
cnt = 5; cnt = 5;
hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer), buffer, &cnt, 0); hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer[0]), buffer, &cnt, 0);
ok(hr == DI_OK && cnt == 5, "GetDeviceData() failed: %08x cnt: %d\n", hr, cnt); ok(hr == DI_OK && cnt == 5, "GetDeviceData() failed: %08x cnt: %d\n", hr, cnt);
dp.dwData = 20; dp.dwData = 20;
...@@ -135,15 +135,17 @@ static void test_object_info(LPDIRECTINPUTDEVICE device, HWND hwnd) ...@@ -135,15 +135,17 @@ static void test_object_info(LPDIRECTINPUTDEVICE device, HWND hwnd)
ok(hr == DI_OK, "SetProperty() failed: %08x\n", hr); ok(hr == DI_OK, "SetProperty() failed: %08x\n", hr);
cnt = 1; cnt = 1;
hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer), buffer, &cnt, 0); hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer[0]), buffer, &cnt, 0);
ok(hr == DI_OK, "GetDeviceData() failed: %08x\n", hr); ok(hr == DI_OK, "GetDeviceData() failed: %08x\n", hr);
/* Cannot change mode while acquired */ /* Cannot change mode while acquired */
hr = IDirectInputDevice_Acquire(device); hr = IDirectInputDevice_Acquire(device);
ok(hr == DI_OK, "Acquire() failed: %08x\n", hr); ok(hr == DI_OK, "Acquire() failed: %08x\n", hr);
cnt = 1; cnt = 1;
hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer), buffer, &cnt, 0); hr = IDirectInputDevice_GetDeviceData(device, sizeof(buffer[0]), buffer, &cnt, 0);
ok(hr == DI_OK, "GetDeviceData() failed: %08x\n", hr); ok(hr == DI_OK, "GetDeviceData() failed: %08x\n", hr);
hr = IDirectInputDevice_SetProperty(device, DIPROP_AXISMODE, &dp.diph); hr = IDirectInputDevice_SetProperty(device, DIPROP_AXISMODE, &dp.diph);
ok(hr == DIERR_ACQUIRED, "SetProperty() returned: %08x\n", hr); ok(hr == DIERR_ACQUIRED, "SetProperty() returned: %08x\n", hr);
hr = IDirectInputDevice_Unacquire(device); hr = IDirectInputDevice_Unacquire(device);
......
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