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
5289d0ef
Commit
5289d0ef
authored
Dec 09, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupx: Consistently use %I printf format for ULONG_PTR values.
parent
4619a45f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
virtcopy.c
dlls/setupx.dll16/virtcopy.c
+3
-3
No files found.
dlls/setupx.dll16/virtcopy.c
View file @
5289d0ef
...
...
@@ -267,7 +267,7 @@ static RETERR16 VCP_VirtnodeCreate(const VCPFILESPEC *vfsSrc, const VCPFILESPEC
*/
RETERR16
WINAPI
VcpOpen16
(
VIFPROC
vifproc
,
LPARAM
lparamMsgRef
)
{
TRACE
(
"(%p, %08
l
x)
\n
"
,
vifproc
,
lparamMsgRef
);
TRACE
(
"(%p, %08
I
x)
\n
"
,
vifproc
,
lparamMsgRef
);
if
(
VCP_opened
)
return
ERR_VCP_BUSY
;
...
...
@@ -517,7 +517,7 @@ RETERR16 WINAPI vcpDefCallbackProc16(LPVOID lpvObj, UINT16 uMsg, WPARAM wParam,
{
static
int
count
=
0
;
if
(
count
<
10
)
FIXME
(
"(%p, %04x, %04x, %08
lx, %08l
x) - what to do here ?
\n
"
,
FIXME
(
"(%p, %04x, %04x, %08
Ix, %08I
x) - what to do here ?
\n
"
,
lpvObj
,
uMsg
,
wParam
,
lParam
,
lParamRef
);
count
++
;
return
OK
;
...
...
@@ -669,7 +669,7 @@ RETERR16 WINAPI vcpUICallbackProc16(LPVOID lpvObj, UINT16 uMsg, WPARAM wParam,
RETERR16
res
=
VCPN_OK
;
if
(
count
<
5
)
FIXME
(
"(%p, %04x, %04x, %08
lx, %08l
x) - semi-stub
\n
"
,
FIXME
(
"(%p, %04x, %04x, %08
Ix, %08I
x) - semi-stub
\n
"
,
lpvObj
,
uMsg
,
wParam
,
lParam
,
lParamRef
);
count
++
;
switch
(
uMsg
)
...
...
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