Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8e6317ff
Commit
8e6317ff
authored
Dec 09, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commdlg: Consistently use %I printf format for ULONG_PTR values.
parent
42b0a3b9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
colordlg.c
dlls/commdlg.dll16/colordlg.c
+1
-1
filedlg.c
dlls/commdlg.dll16/filedlg.c
+3
-3
fontdlg.c
dlls/commdlg.dll16/fontdlg.c
+3
-3
printdlg.c
dlls/commdlg.dll16/printdlg.c
+2
-2
No files found.
dlls/commdlg.dll16/colordlg.c
View file @
8e6317ff
...
...
@@ -44,7 +44,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
*/
BOOL16
CALLBACK
ColorDlgProc16
(
HWND16
hDlg16
,
UINT16
message
,
WPARAM16
wParam
,
LPARAM
lParam
)
{
FIXME
(
"%04x %04x %04x %08
l
x: stub
\n
"
,
hDlg16
,
message
,
wParam
,
lParam
);
FIXME
(
"%04x %04x %04x %08
I
x: stub
\n
"
,
hDlg16
,
message
,
wParam
,
lParam
);
return
FALSE
;
}
...
...
dlls/commdlg.dll16/filedlg.c
View file @
8e6317ff
...
...
@@ -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 %
l
x: stub
\n
"
,
hook
,
hwnd
,
msg
,
wp
,
lp
);
TRACE
(
"%p: %p %08x %x %
I
x: 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 %08
l
x: stub
\n
"
,
hWnd16
,
wMsg
,
wParam
,
lParam
);
FIXME
(
"%04x %04x %04x %08
I
x: 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 %08
l
x: stub
\n
"
,
hWnd16
,
wMsg
,
wParam
,
lParam
);
FIXME
(
"%04x %04x %04x %08
I
x: stub
\n
"
,
hWnd16
,
wMsg
,
wParam
,
lParam
);
return
FALSE
;
}
...
...
dlls/commdlg.dll16/fontdlg.c
View file @
8e6317ff
...
...
@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
INT16
WINAPI
FontFamilyEnumProc16
(
SEGPTR
logfont
,
SEGPTR
metrics
,
UINT16
nFontType
,
LPARAM
lParam
)
{
FIXME
(
"%08lx %08lx %u %
l
x
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
FIXME
(
"%08lx %08lx %u %
I
x
\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 %
l
x
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
FIXME
(
"%08lx %08lx %u %
I
x
\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 %08
l
x: stub
\n
"
,
hDlg16
,
message
,
wParam
,
lParam
);
FIXME
(
"%04x %04x %04x %08
I
x: stub
\n
"
,
hDlg16
,
message
,
wParam
,
lParam
);
return
FALSE
;
}
dlls/commdlg.dll16/printdlg.c
View file @
8e6317ff
...
...
@@ -153,7 +153,7 @@ BOOL16 WINAPI PrintDlg16( LPPRINTDLG16 lppd )
*/
BOOL16
CALLBACK
PrintDlgProc16
(
HWND16
hDlg16
,
UINT16
uMsg
,
WPARAM16
wParam
,
LPARAM
lParam
)
{
FIXME
(
"%04x %04x %04x %08
l
x: stub
\n
"
,
hDlg16
,
uMsg
,
wParam
,
lParam
);
FIXME
(
"%04x %04x %04x %08
I
x: 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=%08
l
X
\n
"
,
lParam
);
TRACE
(
"WM_INITDIALOG lParam=%08
I
X
\n
"
,
lParam
);
ShowWindow
(
hWnd
,
SW_SHOWNORMAL
);
return
(
TRUE
);
case
WM_COMMAND
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment