From: Piotr Caban piotr@codeweavers.com
--- dlls/msado15/rowset.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/dlls/msado15/rowset.c b/dlls/msado15/rowset.c index a4019ef6612..f5de78d5e30 100644 --- a/dlls/msado15/rowset.c +++ b/dlls/msado15/rowset.c @@ -148,8 +148,14 @@ static HRESULT WINAPI rowset_AddRefRows(IRowsetExactScroll *iface, DBCOUNTITEM c { struct rowset *rowset = impl_from_IRowsetExactScroll(iface);
- FIXME("%p, %Id, %p, %p, %p\n", rowset, count, rows, ref_counts, status); - return E_NOTIMPL; + TRACE("%p, %Id, %p, %p, %p\n", rowset, count, rows, ref_counts, status); + if (ref_counts || status) + { + FIXME("unhandled parameters\n"); + return E_NOTIMPL; + } + + return S_OK; }
static HRESULT WINAPI rowset_GetData(IRowsetExactScroll *iface, HROW row, HACCESSOR accessor, void *data)