commdlg.dll16: 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-09 09:25:32 +01:00 committed by Alexandre Julliard
parent 05fef74867
commit 1216170b00
3 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = commdlg.dll16
IMPORTS = comdlg32 user32 gdi32
EXTRADLLFLAGS = -m16 -Wb,--main-module,comdlg32.dll

View File

@ -218,7 +218,7 @@ static LRESULT call_hook16( WNDPROC16 hook, HWND hwnd, UINT msg, WPARAM wp, LPAR
CONTEXT context;
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) );
context.SegDs = context.SegEs = CURRENT_SS;

View File

@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
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;
}
@ -53,7 +53,7 @@ INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
INT16 WINAPI FontStyleEnumProc16( SEGPTR logfont, SEGPTR metrics,
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;
}