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
2083aa3d
Commit
2083aa3d
authored
Apr 07, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Fix some pointer conversion warnings on 64-bit.
parent
e851556f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ordinal.c
dlls/shlwapi/tests/ordinal.c
+3
-3
No files found.
dlls/shlwapi/tests/ordinal.c
View file @
2083aa3d
...
...
@@ -2023,7 +2023,7 @@ static HRESULT WINAPI IOleCommandTargetImpl_Exec(
VARIANT
*
pvaIn
,
VARIANT
*
pvaOut
)
{
add_call
(
&
trace_got
,
3
,
CmdGroup
,
(
void
*
)
nCmdID
,
(
void
*
)
nCmdexecopt
,
pvaIn
,
pvaOut
);
add_call
(
&
trace_got
,
3
,
CmdGroup
,
(
void
*
)
(
DWORD_PTR
)
nCmdID
,
(
void
*
)(
DWORD_PTR
)
nCmdexecopt
,
pvaIn
,
pvaOut
);
return
S_OK
;
}
...
...
@@ -2237,7 +2237,7 @@ static HRESULT WINAPI IProfferServiceImpl_ProfferService(IProfferService *iface,
static
HRESULT
WINAPI
IProfferServiceImpl_RevokeService
(
IProfferService
*
iface
,
DWORD
cookie
)
{
add_call
(
&
trace_got
,
4
,
(
void
*
)
cookie
,
0
,
0
,
0
,
0
);
add_call
(
&
trace_got
,
4
,
(
void
*
)
(
DWORD_PTR
)
cookie
,
0
,
0
,
0
,
0
);
return
S_OK
;
}
...
...
@@ -2300,7 +2300,7 @@ static void test_IUnknown_ProfferService(void)
add_call
(
&
trace_expected
,
1
,
proff
,
&
IID_IServiceProvider
,
0
,
0
,
0
);
add_call
(
&
trace_expected
,
2
,
&
IID_IProfferService
,
&
IID_IProfferService
,
0
,
0
,
0
);
add_call
(
&
trace_expected
,
4
,
(
void
*
)
cookie
,
0
,
0
,
0
,
0
);
add_call
(
&
trace_expected
,
4
,
(
void
*
)
(
DWORD_PTR
)
cookie
,
0
,
0
,
0
,
0
);
init_call_trace
(
&
trace_got
);
hr
=
pIUnknown_ProfferService
((
IUnknown
*
)
proff
,
&
dummy_serviceid
,
0
,
&
cookie
);
...
...
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