mmdevapi/tests: Use RegQueryValueExW() for compatibility with Windows XP.

RegGetValueW() was added later and should be avoided in the conformance tests.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2016-04-20 11:52:11 +02:00 committed by Alexandre Julliard
parent c79236b86e
commit d25af3c247
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ static void test_setvalue_on_wow64(IPropertyStore *store)
/* Note: the registry key exists even without calling IPropStore::Commit */ /* Note: the registry key exists even without calling IPropStore::Commit */
size = sizeof(regval); size = sizeof(regval);
ret = RegGetValueW(props, NULL, bogusW, RRF_RT_DWORD, &type, &regval, &size); ret = RegQueryValueExW(props, bogusW, NULL, &type, (LPBYTE)&regval, &size);
ok(ret == ERROR_SUCCESS, "Couldn't get bogus propertykey value: %u\n", ret); ok(ret == ERROR_SUCCESS, "Couldn't get bogus propertykey value: %u\n", ret);
ok(type == REG_DWORD, "Got wrong value type: %u\n", type); ok(type == REG_DWORD, "Got wrong value type: %u\n", type);
ok(regval == 0xAB, "Got wrong value: 0x%x\n", regval); ok(regval == 0xAB, "Got wrong value: 0x%x\n", regval);