Commit 4605af6b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

shell.dll16: Enable compilation with long types.

parent 570e24a0
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = shell.dll16
IMPORTS = shell32 user32 gdi32 advapi32
......
......@@ -470,7 +470,7 @@ DWORD WINAPI DoEnvironmentSubst16(LPSTR str,WORD length)
*/
static LRESULT WINAPI SHELL_HookProc(INT code, WPARAM wParam, LPARAM lParam)
{
TRACE("%i, %lx, %08lx\n", code, wParam, lParam );
TRACE("%i, %x, %08lx\n", code, wParam, lParam );
if (SHELL_hWnd)
{
......@@ -675,7 +675,7 @@ void WINAPI RunDLL_CallEntry16( DWORD proc, HWND hwnd, HINSTANCE inst, LPCSTR cm
WORD args[5];
SEGPTR cmdline_seg;
TRACE( "proc %x hwnd %p inst %p cmdline %s cmdshow %d\n",
TRACE( "proc %lx hwnd %p inst %p cmdline %s cmdshow %d\n",
proc, hwnd, inst, debugstr_a(cmdline), cmdshow );
cmdline_seg = MapLS( cmdline );
......
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