Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ef32e861
Commit
ef32e861
authored
Feb 04, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Feb 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Add support for remoting IAccessor_GetBindings.
parent
5a407112
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
row_server.c
dlls/msdaps/row_server.c
+20
-4
No files found.
dlls/msdaps/row_server.c
View file @
ef32e861
...
...
@@ -404,8 +404,19 @@ static HRESULT WINAPI server_GetBindings(IWineRowServer* iface, HACCESSOR hAcces
DBBINDING
**
prgBindings
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%08lx, %p, %p, %p): stub
\n
"
,
This
,
hAccessor
,
pdwAccessorFlags
,
pcBindings
,
prgBindings
);
return
E_NOTIMPL
;
HRESULT
hr
;
IAccessor
*
accessor
;
TRACE
(
"(%p)->(%08lx, %p, %p, %p)
\n
"
,
This
,
hAccessor
,
pdwAccessorFlags
,
pcBindings
,
prgBindings
);
hr
=
IUnknown_QueryInterface
(
This
->
inner_unk
,
&
IID_IAccessor
,
(
void
**
)
&
accessor
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
IAccessor_GetBindings
(
accessor
,
hAccessor
,
pdwAccessorFlags
,
pcBindings
,
prgBindings
);
IAccessor_Release
(
accessor
);
TRACE
(
"returning %08x
\n
"
,
hr
);
return
hr
;
}
static
HRESULT
WINAPI
server_ReleaseAccessor
(
IWineRowServer
*
iface
,
HACCESSOR
hAccessor
,
...
...
@@ -1077,8 +1088,13 @@ static HRESULT WINAPI accessor_GetBindings(IAccessor *iface, HACCESSOR hAccessor
DBCOUNTITEM
*
pcBindings
,
DBBINDING
**
prgBindings
)
{
rowset_proxy
*
This
=
impl_from_IAccessor
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%08lx, %p, %p, %p)
\n
"
,
This
,
hAccessor
,
pdwAccessorFlags
,
pcBindings
,
prgBindings
);
hr
=
IWineRowServer_GetBindings
(
This
->
server
,
hAccessor
,
pdwAccessorFlags
,
pcBindings
,
prgBindings
);
return
hr
;
}
static
HRESULT
WINAPI
accessor_ReleaseAccessor
(
IAccessor
*
iface
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefCount
)
...
...
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