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
b2769db6
Commit
b2769db6
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 IRowChange and IRowset. Expose IRowChange on the client side.
parent
40c60e8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
1 deletion
+141
-1
row_server.c
dlls/msdaps/row_server.c
+100
-1
row_server.idl
dlls/msdaps/row_server.idl
+41
-0
No files found.
dlls/msdaps/row_server.c
View file @
b2769db6
...
...
@@ -225,6 +225,54 @@ static HRESULT WINAPI server_Open(IWineRowServer* iface, IUnknown *pUnkOuter, DB
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_SetColumns
(
IWineRowServer
*
iface
,
DBORDINAL
num_cols
,
wine_setcolumns_in
*
in_data
,
DBSTATUS
*
status
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%d, %p, %p): stub
\n
"
,
This
,
num_cols
,
in_data
,
status
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_AddRefRows
(
IWineRowServer
*
iface
,
DBCOUNTITEM
cRows
,
const
HROW
rghRows
[],
DBREFCOUNT
rgRefCounts
[],
DBROWSTATUS
rgRowStatus
[])
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%d, %p, %p, %p): stub
\n
"
,
This
,
cRows
,
rghRows
,
rgRefCounts
,
rgRowStatus
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_GetData
(
IWineRowServer
*
iface
,
HROW
hRow
,
HACCESSOR
hAccessor
,
BYTE
*
pData
,
DWORD
size
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%08lx, %08lx, %p, %d): stub
\n
"
,
This
,
hRow
,
hAccessor
,
pData
,
size
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_GetNextRows
(
IWineRowServer
*
iface
,
HCHAPTER
hReserved
,
DBROWOFFSET
lRowsOffset
,
DBROWCOUNT
cRows
,
DBCOUNTITEM
*
pcRowObtained
,
HROW
**
prghRows
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%08lx, %d, %d, %p, %p): stub
\n
"
,
This
,
hReserved
,
lRowsOffset
,
cRows
,
pcRowObtained
,
prghRows
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_ReleaseRows
(
IWineRowServer
*
iface
,
DBCOUNTITEM
cRows
,
const
HROW
rghRows
[],
DBROWOPTIONS
rgRowOptions
[],
DBREFCOUNT
rgRefCounts
[],
DBROWSTATUS
rgRowStatus
[])
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%d, %p, %p, %p, %p): stub
\n
"
,
This
,
cRows
,
rghRows
,
rgRowOptions
,
rgRefCounts
,
rgRowStatus
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
server_RestartPosition
(
IWineRowServer
*
iface
,
HCHAPTER
hReserved
)
{
server
*
This
=
impl_from_IWineRowServer
(
iface
);
FIXME
(
"(%p)->(%08lx): stub
\n
"
,
This
,
hReserved
);
return
E_NOTIMPL
;
}
static
const
IWineRowServerVtbl
server_vtbl
=
{
server_QueryInterface
,
...
...
@@ -234,7 +282,13 @@ static const IWineRowServerVtbl server_vtbl =
server_GetMarshal
,
server_GetColumns
,
server_GetSourceRowset
,
server_Open
server_Open
,
server_SetColumns
,
server_AddRefRows
,
server_GetData
,
server_GetNextRows
,
server_ReleaseRows
,
server_RestartPosition
};
static
HRESULT
create_server
(
IUnknown
*
outer
,
const
CLSID
*
class
,
void
**
obj
)
...
...
@@ -275,6 +329,7 @@ HRESULT create_rowset_server(IUnknown *outer, void **obj)
typedef
struct
{
const
IRowVtbl
*
row_vtbl
;
const
IRowChangeVtbl
*
row_change_vtbl
;
LONG
ref
;
...
...
@@ -286,6 +341,11 @@ static inline row_proxy *impl_from_IRow(IRow *iface)
return
(
row_proxy
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
row_proxy
,
row_vtbl
));
}
static
inline
row_proxy
*
impl_from_IRowChange
(
IRowChange
*
iface
)
{
return
(
row_proxy
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
row_proxy
,
row_change_vtbl
));
}
static
HRESULT
WINAPI
row_QueryInterface
(
IRow
*
iface
,
REFIID
iid
,
void
**
obj
)
{
row_proxy
*
This
=
impl_from_IRow
(
iface
);
...
...
@@ -296,6 +356,10 @@ static HRESULT WINAPI row_QueryInterface(IRow *iface, REFIID iid, void **obj)
{
*
obj
=
&
This
->
row_vtbl
;
}
else
if
(
IsEqualIID
(
iid
,
&
IID_IRowChange
))
{
*
obj
=
&
This
->
row_change_vtbl
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
iid
));
...
...
@@ -402,6 +466,40 @@ static const IRowVtbl row_vtbl =
row_Open
};
static
HRESULT
WINAPI
row_change_QueryInterface
(
IRowChange
*
iface
,
REFIID
iid
,
void
**
obj
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
IUnknown_QueryInterface
((
IUnknown
*
)
This
,
iid
,
obj
);
}
static
ULONG
WINAPI
row_change_AddRef
(
IRowChange
*
iface
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
IUnknown_AddRef
((
IUnknown
*
)
This
);
}
static
ULONG
WINAPI
row_change_Release
(
IRowChange
*
iface
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
IUnknown_Release
((
IUnknown
*
)
This
);
}
static
HRESULT
WINAPI
row_change_SetColumns
(
IRowChange
*
iface
,
DBORDINAL
cColumns
,
DBCOLUMNACCESS
rgColumns
[])
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
FIXME
(
"(%p)->(%d, %p)
\n
"
,
This
,
cColumns
,
rgColumns
);
return
E_NOTIMPL
;
}
static
const
IRowChangeVtbl
row_change_vtbl
=
{
row_change_QueryInterface
,
row_change_AddRef
,
row_change_Release
,
row_change_SetColumns
};
static
HRESULT
create_row_proxy
(
IWineRowServer
*
server
,
IUnknown
**
obj
)
{
row_proxy
*
proxy
;
...
...
@@ -413,6 +511,7 @@ static HRESULT create_row_proxy(IWineRowServer *server, IUnknown **obj)
if
(
!
proxy
)
return
E_OUTOFMEMORY
;
proxy
->
row_vtbl
=
&
row_vtbl
;
proxy
->
row_change_vtbl
=
&
row_change_vtbl
;
proxy
->
ref
=
1
;
IWineRowServer_AddRef
(
server
);
proxy
->
server
=
server
;
...
...
dlls/msdaps/row_server.idl
View file @
b2769db6
...
...
@@ -65,6 +65,47 @@ typedef struct
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
IUnknown
**
ppUnk
)
;
/*
IRowChange
*/
typedef
struct
{
VARIANT
v
;
DBID
columnid
;
DBLENGTH
data_len
;
DBSTATUS
status
;
DBLENGTH
max_len
;
DBTYPE
type
;
BYTE
precision
;
BYTE
scale
;
}
wine_setcolumns_in
;
HRESULT
SetColumns
(
[
in
]
DBORDINAL
num_cols
,
[
in
,
size_is
(
num_cols
)
]
wine_setcolumns_in
*
in_data
,
[
out
,
size_is
(
num_cols
)
]
DBSTATUS
*
status
)
;
/*
IRowset
*/
HRESULT
AddRefRows
(
[
in
]
DBCOUNTITEM
cRows
,
[
in
,
size_is
(
cRows
)
]
const
HROW
rghRows
[]
,
[
out
,
size_is
(
cRows
)
]
DBREFCOUNT
rgRefCounts
[]
,
[
out
,
size_is
(
cRows
)
]
DBROWSTATUS
rgRowStatus
[]
)
;
HRESULT
GetData
(
[
in
]
HROW
hRow
,
[
in
]
HACCESSOR
hAccessor
,
[
in
,
out
,
size_is
(
size
)
]
BYTE
*
pData
,
[
in
]
DWORD
size
)
;
HRESULT
GetNextRows
(
[
in
]
HCHAPTER
hReserved
,
[
in
]
DBROWOFFSET
lRowsOffset
,
[
in
]
DBROWCOUNT
cRows
,
[
out
]
DBCOUNTITEM
*
pcRowObtained
,
[
out
,
size_is
(,
cRows
)
]
HROW
**
prghRows
)
;
HRESULT
ReleaseRows
(
[
in
]
DBCOUNTITEM
cRows
,
[
in
,
size_is
(
cRows
)
]
const
HROW
rghRows
[]
,
[
in
,
size_is
(
cRows
)
]
DBROWOPTIONS
rgRowOptions
[]
,
[
out
,
size_is
(
cRows
)
]
DBREFCOUNT
rgRefCounts
[]
,
[
out
,
size_is
(
cRows
)
]
DBROWSTATUS
rgRowStatus
[]
)
;
HRESULT
RestartPosition
(
[
in
]
HCHAPTER
hReserved
)
;
}
...
...
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