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
021eaade
Commit
021eaade
authored
Oct 27, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Oct 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement IRowsetInfo_GetProperties proxy and stub.
parent
64dc7306
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+20
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
021eaade
...
...
@@ -604,9 +604,11 @@ HRESULT __RPC_STUB IAccessor_ReleaseAccessor_Stub(IAccessor* This, HACCESSOR hAc
HRESULT
CALLBACK
IRowsetInfo_GetProperties_Proxy
(
IRowsetInfo
*
This
,
const
ULONG
cPropertyIDSets
,
const
DBPROPIDSET
rgPropertyIDSets
[],
ULONG
*
pcPropertySets
,
DBPROPSET
**
prgPropertySets
)
{
HRESULT
hr
;
IErrorInfo
*
error
;
ULONG
i
;
FIXME
(
"(%p)->(%d, %p, %p, %p): stub
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
TRACE
(
"(%p)->(%d, %p, %p, %p)
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
for
(
i
=
0
;
i
<
cPropertyIDSets
;
i
++
)
{
...
...
@@ -616,15 +618,29 @@ HRESULT CALLBACK IRowsetInfo_GetProperties_Proxy(IRowsetInfo* This, const ULONG
TRACE
(
"
\t
%d: prop id %d
\n
"
,
j
,
rgPropertyIDSets
[
i
].
rgPropertyIDs
[
j
]);
}
return
E_NOTIMPL
;
hr
=
IRowsetInfo_RemoteGetProperties_Proxy
(
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IRowsetInfo_GetProperties_Stub
(
IRowsetInfo
*
This
,
ULONG
cPropertyIDSets
,
const
DBPROPIDSET
*
rgPropertyIDSets
,
ULONG
*
pcPropertySets
,
DBPROPSET
**
prgPropertySets
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%d, %p, %p, %p, %p): stub
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
,
ppErrorInfoRem
)
;
HRESULT
hr
;
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%d, %p, %p, %p, %p)
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
,
ppErrorInfoRem
);
*
ppErrorInfoRem
=
NULL
;
hr
=
IRowsetInfo_GetProperties
(
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
TRACE
(
"returning %08x
\n
"
,
hr
);
return
hr
;
}
HRESULT
CALLBACK
IRowsetInfo_GetReferencedRowset_Proxy
(
IRowsetInfo
*
This
,
DBORDINAL
iOrdinal
,
REFIID
riid
,
IUnknown
**
ppReferencedRowset
)
...
...
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