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
835c097d
Commit
835c097d
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 ISessionProperties_SetProperties proxy and stub.
parent
78729fb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
4 deletions
+44
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+44
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
835c097d
...
...
@@ -296,16 +296,56 @@ HRESULT __RPC_STUB ISessionProperties_GetProperties_Stub(ISessionProperties* Thi
HRESULT
CALLBACK
ISessionProperties_SetProperties_Proxy
(
ISessionProperties
*
This
,
ULONG
cPropertySets
,
DBPROPSET
rgPropertySets
[])
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
This
,
cPropertySets
,
rgPropertySets
);
return
E_NOTIMPL
;
ULONG
prop_set
,
prop
,
total_props
=
0
;
HRESULT
hr
;
IErrorInfo
*
error
;
DBPROPSTATUS
*
status
;
TRACE
(
"(%p, %d, %p)
\n
"
,
This
,
cPropertySets
,
rgPropertySets
);
for
(
prop_set
=
0
;
prop_set
<
cPropertySets
;
prop_set
++
)
total_props
+=
rgPropertySets
[
prop_set
].
cProperties
;
if
(
total_props
==
0
)
return
S_OK
;
status
=
CoTaskMemAlloc
(
total_props
*
sizeof
(
*
status
));
if
(
!
status
)
return
E_OUTOFMEMORY
;
hr
=
ISessionProperties_RemoteSetProperties_Proxy
(
This
,
cPropertySets
,
rgPropertySets
,
total_props
,
status
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
total_props
=
0
;
for
(
prop_set
=
0
;
prop_set
<
cPropertySets
;
prop_set
++
)
for
(
prop
=
0
;
prop
<
rgPropertySets
[
prop_set
].
cProperties
;
prop
++
)
rgPropertySets
[
prop_set
].
rgProperties
[
prop
].
dwStatus
=
status
[
total_props
++
];
CoTaskMemFree
(
status
);
return
hr
;
}
HRESULT
__RPC_STUB
ISessionProperties_SetProperties_Stub
(
ISessionProperties
*
This
,
ULONG
cPropertySets
,
DBPROPSET
*
rgPropertySets
,
ULONG
cTotalProps
,
DBPROPSTATUS
*
rgPropStatus
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p, %d, %p, %d, %p, %p): stub
\n
"
,
This
,
cPropertySets
,
rgPropertySets
,
cTotalProps
,
ULONG
prop_set
,
prop
,
total_props
=
0
;
HRESULT
hr
;
TRACE
(
"(%p, %d, %p, %d, %p, %p)
\n
"
,
This
,
cPropertySets
,
rgPropertySets
,
cTotalProps
,
rgPropStatus
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
*
ppErrorInfoRem
=
NULL
;
hr
=
ISessionProperties_SetProperties
(
This
,
cPropertySets
,
rgPropertySets
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
for
(
prop_set
=
0
;
prop_set
<
cPropertySets
;
prop_set
++
)
for
(
prop
=
0
;
prop
<
rgPropertySets
[
prop_set
].
cProperties
;
prop
++
)
rgPropStatus
[
total_props
++
]
=
rgPropertySets
[
prop_set
].
rgProperties
[
prop
].
dwStatus
;
return
hr
;
}
HRESULT
CALLBACK
IOpenRowset_OpenRowset_Proxy
(
IOpenRowset
*
This
,
IUnknown
*
pUnkOuter
,
DBID
*
pTableID
,
DBID
*
pIndexID
,
...
...
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