Commit 1216170b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

commdlg.dll16: Enable compilation with long types.

parent 05fef748
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = commdlg.dll16 MODULE = commdlg.dll16
IMPORTS = comdlg32 user32 gdi32 IMPORTS = comdlg32 user32 gdi32
EXTRADLLFLAGS = -m16 -Wb,--main-module,comdlg32.dll EXTRADLLFLAGS = -m16 -Wb,--main-module,comdlg32.dll
......
...@@ -218,7 +218,7 @@ static LRESULT call_hook16( WNDPROC16 hook, HWND hwnd, UINT msg, WPARAM wp, LPAR ...@@ -218,7 +218,7 @@ static LRESULT call_hook16( WNDPROC16 hook, HWND hwnd, UINT msg, WPARAM wp, LPAR
CONTEXT context; CONTEXT context;
WORD params[5]; WORD params[5];
TRACE( "%p: %p %08x %lx %lx: stub\n", hook, hwnd, msg, wp, lp ); TRACE( "%p: %p %08x %x %lx: stub\n", hook, hwnd, msg, wp, lp );
memset( &context, 0, sizeof(context) ); memset( &context, 0, sizeof(context) );
context.SegDs = context.SegEs = CURRENT_SS; context.SegDs = context.SegEs = CURRENT_SS;
......
...@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg); ...@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics, INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
UINT16 nFontType, LPARAM lParam ) UINT16 nFontType, LPARAM lParam )
{ {
FIXME( "%08x %08x %u %lx\n", logfont, metrics, nFontType, lParam ); FIXME( "%08lx %08lx %u %lx\n", logfont, metrics, nFontType, lParam );
return 0; return 0;
} }
...@@ -53,7 +53,7 @@ INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics, ...@@ -53,7 +53,7 @@ INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
INT16 WINAPI FontStyleEnumProc16( SEGPTR logfont, SEGPTR metrics, INT16 WINAPI FontStyleEnumProc16( SEGPTR logfont, SEGPTR metrics,
UINT16 nFontType, LPARAM lParam ) UINT16 nFontType, LPARAM lParam )
{ {
FIXME( "%08x %08x %u %lx\n", logfont, metrics, nFontType, lParam ); FIXME( "%08lx %08lx %u %lx\n", logfont, metrics, nFontType, lParam );
return 0; return 0;
} }
......
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