printui: 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
790b094066
commit
55f0f125f2
|
@ -1,4 +1,3 @@
|
|||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
||||
MODULE = printui.dll
|
||||
IMPORTS = shell32
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ void WINAPI PrintUIEntryW(HWND hWnd, HINSTANCE hInst, LPCWSTR pCommand, DWORD nC
|
|||
context_t cx;
|
||||
BOOL res = FALSE;
|
||||
|
||||
TRACE("(%p, %p, %s, 0x%x)\n", hWnd, hInst, debugstr_w(pCommand), nCmdShow);
|
||||
TRACE("(%p, %p, %s, 0x%lx)\n", hWnd, hInst, debugstr_w(pCommand), nCmdShow);
|
||||
|
||||
memset(&cx, 0, sizeof(context_t));
|
||||
cx.hWnd = hWnd;
|
||||
|
|
Loading…
Reference in New Issue