Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
298929c8
Commit
298929c8
authored
May 15, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Added IEnumConnectionPoints::Next proxy/stub.
parent
aa3a2348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+20
-6
No files found.
dlls/oleaut32/usrmarshal.c
View file @
298929c8
...
...
@@ -2232,21 +2232,35 @@ HRESULT __RPC_STUB IEnumConnections_Next_Stub(
HRESULT
CALLBACK
IEnumConnectionPoints_Next_Proxy
(
IEnumConnectionPoints
*
This
,
ULONG
cConnections
,
LPCONNECTIONPOINT
*
ppCP
,
IConnectionPoint
*
*
ppCP
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
ULONG
fetched
;
TRACE
(
"(%u, %p %p)
\n
"
,
cConnections
,
ppCP
,
pcFetched
);
if
(
!
pcFetched
)
pcFetched
=
&
fetched
;
return
IEnumConnectionPoints_RemoteNext_Proxy
(
This
,
cConnections
,
ppCP
,
pcFetched
);
}
HRESULT
__RPC_STUB
IEnumConnectionPoints_Next_Stub
(
IEnumConnectionPoints
*
This
,
ULONG
cConnections
,
LPCONNECTIONPOINT
*
ppCP
,
IConnectionPoint
*
*
ppCP
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%u, %p, %p)
\n
"
,
cConnections
,
ppCP
,
pcFetched
);
*
pcFetched
=
0
;
hr
=
IEnumConnectionPoints_Next
(
This
,
cConnections
,
ppCP
,
pcFetched
);
if
(
hr
==
S_OK
)
*
pcFetched
=
cConnections
;
return
hr
;
}
HRESULT
CALLBACK
IPersistMemory_Load_Proxy
(
...
...
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