1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

commdlg: Consistently use %I printf format for ULONG_PTR values.

This commit is contained in:
Alexandre Julliard 2022-12-09 11:42:14 +01:00
parent 42b0a3b917
commit 8e6317ffee
4 changed files with 9 additions and 9 deletions

View File

@ -44,7 +44,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
*/
BOOL16 CALLBACK ColorDlgProc16( HWND16 hDlg16, UINT16 message, WPARAM16 wParam, LPARAM lParam )
{
FIXME( "%04x %04x %04x %08lx: stub\n", hDlg16, message, wParam, lParam );
FIXME( "%04x %04x %04x %08Ix: stub\n", hDlg16, message, wParam, lParam );
return FALSE;
}

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 %x %lx: stub\n", hook, hwnd, msg, wp, lp );
TRACE( "%p: %p %08x %x %Ix: stub\n", hook, hwnd, msg, wp, lp );
memset( &context, 0, sizeof(context) );
context.SegDs = context.SegEs = CURRENT_SS;
@ -547,7 +547,7 @@ static UINT_PTR CALLBACK dummy_hook( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
*/
BOOL16 CALLBACK FileOpenDlgProc16(HWND16 hWnd16, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam)
{
FIXME( "%04x %04x %04x %08lx: stub\n", hWnd16, wMsg, wParam, lParam );
FIXME( "%04x %04x %04x %08Ix: stub\n", hWnd16, wMsg, wParam, lParam );
return FALSE;
}
@ -556,7 +556,7 @@ BOOL16 CALLBACK FileOpenDlgProc16(HWND16 hWnd16, UINT16 wMsg, WPARAM16 wParam, L
*/
BOOL16 CALLBACK FileSaveDlgProc16(HWND16 hWnd16, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam)
{
FIXME( "%04x %04x %04x %08lx: stub\n", hWnd16, wMsg, wParam, lParam );
FIXME( "%04x %04x %04x %08Ix: stub\n", hWnd16, wMsg, wParam, lParam );
return FALSE;
}

View File

@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
UINT16 nFontType, LPARAM lParam )
{
FIXME( "%08lx %08lx %u %lx\n", logfont, metrics, nFontType, lParam );
FIXME( "%08lx %08lx %u %Ix\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( "%08lx %08lx %u %lx\n", logfont, metrics, nFontType, lParam );
FIXME( "%08lx %08lx %u %Ix\n", logfont, metrics, nFontType, lParam );
return 0;
}
@ -138,6 +138,6 @@ BOOL16 WINAPI ChooseFont16(LPCHOOSEFONT16 lpChFont)
BOOL16 CALLBACK FormatCharDlgProc16(HWND16 hDlg16, UINT16 message,
WPARAM16 wParam, LPARAM lParam)
{
FIXME( "%04x %04x %04x %08lx: stub\n", hDlg16, message, wParam, lParam );
FIXME( "%04x %04x %04x %08Ix: stub\n", hDlg16, message, wParam, lParam );
return FALSE;
}

View File

@ -153,7 +153,7 @@ BOOL16 WINAPI PrintDlg16( LPPRINTDLG16 lppd )
*/
BOOL16 CALLBACK PrintDlgProc16(HWND16 hDlg16, UINT16 uMsg, WPARAM16 wParam, LPARAM lParam)
{
FIXME( "%04x %04x %04x %08lx: stub\n", hDlg16, uMsg, wParam, lParam );
FIXME( "%04x %04x %04x %08Ix: stub\n", hDlg16, uMsg, wParam, lParam );
return FALSE;
}
@ -167,7 +167,7 @@ BOOL16 CALLBACK PrintSetupDlgProc16(HWND16 hWnd16, UINT16 wMsg, WPARAM16 wParam,
switch (wMsg)
{
case WM_INITDIALOG:
TRACE("WM_INITDIALOG lParam=%08lX\n", lParam);
TRACE("WM_INITDIALOG lParam=%08IX\n", lParam);
ShowWindow(hWnd, SW_SHOWNORMAL);
return (TRUE);
case WM_COMMAND: