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
59c2caa6
Commit
59c2caa6
authored
Feb 04, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Feb 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Add server side stubs for IRowsetInfo.
parent
923805b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
1 deletion
+44
-1
row_server.c
dlls/msdaps/row_server.c
+29
-1
row_server.idl
dlls/msdaps/row_server.idl
+15
-0
No files found.
dlls/msdaps/row_server.c
View file @
59c2caa6
...
...
@@ -346,6 +346,31 @@ static HRESULT WINAPI server_Hash(IWineRowServer *iface, HCHAPTER hReserved, DBB
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_GetProperties
(
IWineRowServer
*
iface
,
ULONG
cPropertyIDSets
,
const
DBPROPIDSET
*
rgPropertyIDSets
,
ULONG
*
pcPropertySets
,
DBPROPSET
**
prgPropertySets
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%d, %p, %p, %p)
\n
"
,
This
,
cPropertyIDSets
,
rgPropertyIDSets
,
pcPropertySets
,
prgPropertySets
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_GetReferencedRowset
(
IWineRowServer
*
iface
,
DBORDINAL
iOrdinal
,
REFIID
riid
,
IUnknown
**
ppReferencedRowset
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_GetSpecification
(
IWineRowServer
*
iface
,
REFIID
riid
,
IUnknown
**
ppSpecification
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
const
IWineRowServerVtbl
server_vtbl
=
{
server_QueryInterface
,
...
...
@@ -365,7 +390,10 @@ static const IWineRowServerVtbl server_vtbl =
server_Compare
,
server_GetRowsAt
,
server_GetRowsByBookmark
,
server_Hash
server_Hash
,
server_GetProperties
,
server_GetReferencedRowset
,
server_GetSpecification
};
static
HRESULT
create_server
(
IUnknown
*
outer
,
const
CLSID
*
class
,
void
**
obj
)
...
...
dlls/msdaps/row_server.idl
View file @
59c2caa6
...
...
@@ -139,6 +139,21 @@ typedef struct
[
out
,
size_is
(
cBookmarks
)
]
DBHASHVALUE
rgHashedValues
[]
,
[
out
,
size_is
(
cBookmarks
)
]
DBROWSTATUS
rgBookmarkStatus
[]
)
;
/*
IRowsetInfo
*/
HRESULT
GetProperties
(
[
in
]
ULONG
cPropertyIDSets
,
[
in
,
unique
,
size_is
(
cPropertyIDSets
)
]
const
DBPROPIDSET
*
rgPropertyIDSets
,
[
in
,
out
]
ULONG
*
pcPropertySets
,
[
out
,
size_is
(,
*
pcPropertySets
)
]
DBPROPSET
**
prgPropertySets
)
;
HRESULT
GetReferencedRowset
(
[
in
]
DBORDINAL
iOrdinal
,
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
IUnknown
**
ppReferencedRowset
)
;
HRESULT
GetSpecification
(
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
IUnknown
**
ppSpecification
)
;
}
[
...
...
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