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
25b689cf
Commit
25b689cf
authored
May 07, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement proxy/stub for IEnumConnections::Next().
parent
f07c9784
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+18
-4
No files found.
dlls/oleaut32/usrmarshal.c
View file @
25b689cf
...
...
@@ -2201,8 +2201,14 @@ HRESULT CALLBACK IEnumConnections_Next_Proxy(
LPCONNECTDATA
rgcd
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
ULONG
fetched
;
TRACE
(
"(%u, %p %p)
\n
"
,
cConnections
,
rgcd
,
pcFetched
);
if
(
!
pcFetched
)
pcFetched
=
&
fetched
;
return
IEnumConnections_RemoteNext_Proxy
(
This
,
cConnections
,
rgcd
,
pcFetched
);
}
HRESULT
__RPC_STUB
IEnumConnections_Next_Stub
(
...
...
@@ -2211,8 +2217,16 @@ HRESULT __RPC_STUB IEnumConnections_Next_Stub(
LPCONNECTDATA
rgcd
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%u, %p, %p)
\n
"
,
cConnections
,
rgcd
,
pcFetched
);
*
pcFetched
=
0
;
hr
=
IEnumConnections_Next
(
This
,
cConnections
,
rgcd
,
pcFetched
);
if
(
hr
==
S_OK
)
*
pcFetched
=
cConnections
;
return
hr
;
}
HRESULT
CALLBACK
IEnumConnectionPoints_Next_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