Commit 9c02d53c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

pstorec/tests: Enable compilation with long types.

parent b01199d6
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = pstorec.dll
C_SRCS = \
......
......@@ -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);
......
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