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
5a946240
Commit
5a946240
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 IDBCreateCommand_CreateCommand proxy and stub.
parent
21137fe2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
6 deletions
+19
-6
usrmarshal.c
dlls/msdaps/usrmarshal.c
+19
-6
No files found.
dlls/msdaps/usrmarshal.c
View file @
5a946240
...
...
@@ -40,18 +40,31 @@ WINE_DEFAULT_DEBUG_CHANNEL(oledb);
HRESULT
CALLBACK
IDBCreateCommand_CreateCommand_Proxy
(
IDBCreateCommand
*
This
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
IUnknown
**
ppCommand
)
{
FIXME
(
"(%p, %p, %s, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppCommand
);
return
E_NOTIMPL
;
HRESULT
hr
;
IErrorInfo
*
error
;
TRACE
(
"(%p, %p, %s, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppCommand
);
hr
=
IDBCreateCommand_RemoteCreateCommand_Proxy
(
This
,
pUnkOuter
,
riid
,
ppCommand
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IDBCreateCommand_CreateCommand_Stub
(
IDBCreateCommand
*
This
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
IUnknown
**
ppCommand
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p, %p, %s, %p, %p): stub
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppCommand
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p, %p, %s, %p, %p)
\n
"
,
This
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppCommand
,
ppErrorInfoRem
)
;
*
ppErrorInfoRem
=
NULL
;
hr
=
IDBCreateCommand_CreateCommand
(
This
,
pUnkOuter
,
riid
,
ppCommand
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
HRESULT
CALLBACK
IDBCreateSession_CreateSession_Proxy
(
IDBCreateSession
*
This
,
IUnknown
*
pUnkOuter
,
...
...
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