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:
parent
05fef74867
commit
1216170b00
3 changed files with 3 additions and 4 deletions
|
@ -1,4 +1,3 @@
|
||||||
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
|
||||||
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);
|
||||||
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,
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue