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
da4f7a5d
Commit
da4f7a5d
authored
Nov 07, 2009
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement IDBProperties_GetProperties_Proxy and IDBProperties_GetProperties_Stub.
parent
c25753ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
4 deletions
+21
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+21
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
da4f7a5d
...
...
@@ -100,17 +100,34 @@ HRESULT __RPC_STUB IDBCreateSession_CreateSession_Stub(IDBCreateSession* This, I
HRESULT
CALLBACK
IDBProperties_GetProperties_Proxy
(
IDBProperties
*
This
,
ULONG
cPropertyIDSets
,
const
DBPROPIDSET
rgPropertyIDSets
[],
ULONG
*
pcPropertySets
,
DBPROPSET
**
prgPropertySets
)
{
FIXME
(
"(%p, %d, %p, %p, %p): stub
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
HRESULT
hr
;
IErrorInfo
*
error
;
TRACE
(
"(%p, %d, %p, %p, %p)
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
return
E_NOTIMPL
;
hr
=
IDBProperties_RemoteGetProperties_Proxy
(
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IDBProperties_GetProperties_Stub
(
IDBProperties
*
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
,
HRESULT
hr
;
TRACE
(
"(%p, %d, %p, %p, %p, %p)
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
*
ppErrorInfoRem
=
NULL
;
hr
=
IDBProperties_GetProperties
(
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
HRESULT
CALLBACK
IDBProperties_GetPropertyInfo_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