Commit 2f858cc0 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

directmanipulation/tests: Enable compilation with long types.

parent 20ca4e9a
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = directmanipulation.dll
IMPORTS = uuid ole32
......
......@@ -39,10 +39,10 @@ static void test_IDirectManipulationManager2(void)
win_skip("Failed to create XMLView instance\n");
return;
}
ok(hres == S_OK, "CoCreateInstance returned %x, expected S_OK\n", hres);
ok(hres == S_OK, "CoCreateInstance returned %lx, expected S_OK\n", hres);
hres = IDirectManipulationManager2_GetUpdateManager(manager2, &IID_IDirectManipulationUpdateManager, (void**)&update);
ok(hres == S_OK, "returned %x, expected S_OK\n", hres);
ok(hres == S_OK, "returned %lx, expected S_OK\n", hres);
if(update)
IDirectManipulationUpdateManager_Release(update);
......
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