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
78729fb4
Commit
78729fb4
authored
Aug 24, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Aug 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement IDBCreateSession_CreateSession proxy and stub.
parent
9d1ddfaa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
usrmarshal.c
dlls/msdaps/usrmarshal.c
+18
-5
No files found.
dlls/msdaps/usrmarshal.c
View file @
78729fb4
...
...
@@ -57,18 +57,31 @@ HRESULT __RPC_STUB IDBCreateCommand_CreateCommand_Stub(IDBCreateCommand* This, I
HRESULT
CALLBACK
IDBCreateSession_CreateSession_Proxy
(
IDBCreateSession
*
This
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
IUnknown
**
ppDBSession
)
{
FIXME
(
"(%p, %p, %s, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppDBSession
);
return
E_NOTIMPL
;
HRESULT
hr
;
IErrorInfo
*
error
;
TRACE
(
"(%p, %p, %s, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppDBSession
);
hr
=
IDBCreateSession_RemoteCreateSession_Proxy
(
This
,
pUnkOuter
,
riid
,
ppDBSession
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IDBCreateSession_CreateSession_Stub
(
IDBCreateSession
*
This
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
IUnknown
**
ppDBSession
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p, %p, %s, %p, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
HRESULT
hr
;
TRACE
(
"(%p, %p, %s, %p, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppDBSession
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
*
ppErrorInfoRem
=
NULL
;
hr
=
IDBCreateSession_CreateSession
(
This
,
pUnkOuter
,
riid
,
ppDBSession
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
HRESULT
CALLBACK
IDBProperties_GetProperties_Proxy
(
IDBProperties
*
This
,
ULONG
cPropertyIDSets
,
const
DBPROPIDSET
rgPropertyIDSets
[],
...
...
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