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:
Eric Pouech 2022-02-24 11:27:50 +01:00 committed by Alexandre Julliard
parent 20ca4e9a06
commit 2f858cc064
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = directmanipulation.dll
IMPORTS = uuid ole32

View file

@ -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);