mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[XINPUT1_3_WINETEST] Sync with Wine Staging 4.18. CORE-16441
This commit is contained in:
parent
a80c5a56e3
commit
b05ac020b4
1 changed files with 4 additions and 1 deletions
|
@ -126,6 +126,9 @@ static void test_get_state(void)
|
|||
}
|
||||
}
|
||||
|
||||
result = pXInputGetState(0, NULL);
|
||||
ok(result == ERROR_BAD_ARGUMENTS, "XInputGetState returned (%d)\n", result);
|
||||
|
||||
result = pXInputGetState(XUSER_MAX_COUNT, &state);
|
||||
ok(result == ERROR_BAD_ARGUMENTS, "XInputGetState returned (%d)\n", result);
|
||||
|
||||
|
@ -292,7 +295,7 @@ START_TEST(xinput)
|
|||
void *pXInputGetStateEx_Ordinal;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < sizeof(libs) / sizeof(libs[0]); i++)
|
||||
for (i = 0; i < ARRAY_SIZE(libs); i++)
|
||||
{
|
||||
hXinput = LoadLibraryA( libs[i].name );
|
||||
|
||||
|
|
Loading…
Reference in a new issue