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
21137fe2
Commit
21137fe2
authored
Aug 25, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Aug 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement ICreateRow_CreateRow proxy and stub.
parent
1591d197
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+22
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
21137fe2
...
...
@@ -388,9 +388,15 @@ HRESULT CALLBACK ICreateRow_CreateRow_Proxy(ICreateRow* This, IUnknown *pUnkOute
REFGUID
rguid
,
REFIID
riid
,
IAuthenticate
*
pAuthenticate
,
DBIMPLICITSESSION
*
pImplSession
,
DBBINDURLSTATUS
*
pdwBindStatus
,
LPOLESTR
*
ppwszNewURL
,
IUnknown
**
ppUnk
)
{
FIXME
(
"(%p, %p, %s, %08x, %s, %s, %p, %p, %p, %p, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_w
(
pwszURL
),
dwBindURLFlags
,
HRESULT
hr
;
TRACE
(
"(%p, %p, %s, %08x, %s, %s, %p, %p, %p, %p, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_w
(
pwszURL
),
dwBindURLFlags
,
debugstr_guid
(
rguid
),
debugstr_guid
(
riid
),
pAuthenticate
,
pImplSession
,
pdwBindStatus
,
ppwszNewURL
,
ppUnk
);
return
E_NOTIMPL
;
hr
=
ICreateRow_RemoteCreateRow_Proxy
(
This
,
pUnkOuter
,
pwszURL
,
dwBindURLFlags
,
rguid
,
riid
,
pAuthenticate
,
pImplSession
?
pImplSession
->
pUnkOuter
:
NULL
,
pImplSession
?
pImplSession
->
piid
:
NULL
,
pImplSession
?
&
pImplSession
->
pSession
:
NULL
,
pdwBindStatus
,
ppwszNewURL
,
ppUnk
);
return
hr
;
}
HRESULT
__RPC_STUB
ICreateRow_CreateRow_Stub
(
ICreateRow
*
This
,
IUnknown
*
pUnkOuter
,
LPCOLESTR
pwszURL
,
DBBINDURLFLAG
dwBindURLFlags
,
...
...
@@ -398,8 +404,20 @@ HRESULT __RPC_STUB ICreateRow_CreateRow_Stub(ICreateRow* This, IUnknown *pUnkOut
IID
*
piid
,
IUnknown
**
ppSession
,
DBBINDURLSTATUS
*
pdwBindStatus
,
LPOLESTR
*
ppwszNewURL
,
IUnknown
**
ppUnk
)
{
FIXME
(
"(%p, %p, %s, %08x, %s, %s, %p, %p, %p, %p, %p, %p, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_w
(
pwszURL
),
dwBindURLFlags
,
HRESULT
hr
;
DBIMPLICITSESSION
impl_session
;
TRACE
(
"(%p, %p, %s, %08x, %s, %s, %p, %p, %p, %p, %p, %p, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_w
(
pwszURL
),
dwBindURLFlags
,
debugstr_guid
(
rguid
),
debugstr_guid
(
riid
),
pAuthenticate
,
pSessionUnkOuter
,
piid
,
ppSession
,
pdwBindStatus
,
ppwszNewURL
,
ppUnk
);
return
E_NOTIMPL
;
impl_session
.
pUnkOuter
=
pSessionUnkOuter
;
impl_session
.
piid
=
piid
;
impl_session
.
pSession
=
NULL
;
hr
=
ICreateRow_CreateRow
(
This
,
pUnkOuter
,
pwszURL
,
dwBindURLFlags
,
rguid
,
riid
,
pAuthenticate
,
ppSession
?
&
impl_session
:
NULL
,
pdwBindStatus
,
ppwszNewURL
,
ppUnk
);
if
(
ppSession
)
*
ppSession
=
impl_session
.
pSession
;
return
hr
;
}
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