directmanipulation/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:
parent
20ca4e9a06
commit
2f858cc064
|
@ -1,4 +1,3 @@
|
||||||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
|
||||||
TESTDLL = directmanipulation.dll
|
TESTDLL = directmanipulation.dll
|
||||||
IMPORTS = uuid ole32
|
IMPORTS = uuid ole32
|
||||||
|
|
||||||
|
|
|
@ -39,10 +39,10 @@ static void test_IDirectManipulationManager2(void)
|
||||||
win_skip("Failed to create XMLView instance\n");
|
win_skip("Failed to create XMLView instance\n");
|
||||||
return;
|
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);
|
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)
|
if(update)
|
||||||
IDirectManipulationUpdateManager_Release(update);
|
IDirectManipulationUpdateManager_Release(update);
|
||||||
|
|
Loading…
Reference in New Issue