Commit c7fac86e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

atlthunk/tests: Build without -DWINE_NO_LONG_TYPES.

parent 308b24d9
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = atlthunk.dll
IMPORTS = atlthunk
......
......@@ -23,8 +23,8 @@
static LRESULT WINAPI test_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
ok(msg == 1, "msg = %u\n", msg);
ok(wparam == 2, "wparam = %lu\n", wparam);
ok(lparam == 3, "lparam = %lu\n", lparam);
ok(wparam == 2, "wparam = %Id\n", wparam);
ok(lparam == 3, "lparam = %Id\n", lparam);
return (LRESULT)hwnd | 0x1000;
}
......@@ -49,7 +49,7 @@ static void test_thunk_proc(void)
ok(thunk_proc != NULL, "thunk_proc = NULL\n");
res = thunk_proc((HWND)0x1234, 1, 2, 3);
ok(res == (i | 0x1000), "res = %lu\n", res);
ok(res == (i | 0x1000), "res = %Iu\n", res);
}
for(i=0; i < ARRAY_SIZE(thunks); i++)
......
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