pstorec/tests: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-03-03 08:22:09 +01:00 committed by Alexandre Julliard
parent b01199d6c1
commit 9c02d53ca7
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = pstorec.dll
C_SRCS = \

View File

@ -49,14 +49,14 @@ static void test_PStoreCreateInstance(void)
win_skip("PStoreCreateInstance is not implemented on this system\n");
return;
}
ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
ok(hr == S_OK, "Unexpected return value %#lx.\n", hr);
hr = IPStore_QueryInterface(store, &IID_IUnknown, (void **)&unk);
ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
ok(hr == S_OK, "Unexpected return value %#lx.\n", hr);
IUnknown_Release(unk);
hr = IPStore_QueryInterface(store, &IID_IPStore, (void **)&unk);
ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
ok(hr == S_OK, "Unexpected return value %#lx.\n", hr);
IUnknown_Release(unk);
IPStore_Release(store);