msdaps: Implement IRowsetNotify stub/proxy methods.
This commit is contained in:
parent
3fd07694c4
commit
69008be65d
@ -971,39 +971,39 @@ HRESULT __RPC_STUB IDBAsynchStatus_GetStatus_Stub(IDBAsynchStatus* This, HCHAPTE
|
|||||||
HRESULT CALLBACK IRowsetNotify_OnRowChange_Proxy(IRowsetNotify* This, IRowset *rowset, DBCOUNTITEM rows, HROW *hrows, DBREASON reason,
|
HRESULT CALLBACK IRowsetNotify_OnRowChange_Proxy(IRowsetNotify* This, IRowset *rowset, DBCOUNTITEM rows, HROW *hrows, DBREASON reason,
|
||||||
DBEVENTPHASE phase, BOOL cantdeny)
|
DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %ld %p %d %d %d): stub\n", This, rowset, rows, hrows, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %ld %p %d %d %d)\n", This, rowset, rows, hrows, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_RemoteOnRowChange_Proxy(This, rowset, rows, hrows, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT __RPC_STUB IRowsetNotify_OnRowChange_Stub(IRowsetNotify* This, IRowset *rowset, DBCOUNTITEM rows, HROW *hrows, DBREASON reason,
|
HRESULT __RPC_STUB IRowsetNotify_OnRowChange_Stub(IRowsetNotify* This, IRowset *rowset, DBCOUNTITEM rows, HROW *hrows, DBREASON reason,
|
||||||
DBEVENTPHASE phase, BOOL cantdeny)
|
DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %ld %p %d %d %d): stub\n", This, rowset, rows, hrows, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %ld %p %d %d %d)\n", This, rowset, rows, hrows, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_OnRowChange(This, rowset, rows, hrows, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT CALLBACK IRowsetNotify_OnFieldChange_Proxy(IRowsetNotify* This, IRowset *rowset, HROW row, DBORDINAL ccols, DBORDINAL *columns,
|
HRESULT CALLBACK IRowsetNotify_OnFieldChange_Proxy(IRowsetNotify* This, IRowset *rowset, HROW row, DBORDINAL ccols, DBORDINAL *columns,
|
||||||
DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %lx %ld %p %d %d %d): stub\n", This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %lx %ld %p %d %d %d)\n", This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_RemoteOnFieldChange_Proxy(This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT __RPC_STUB IRowsetNotify_OnFieldChange_Stub(IRowsetNotify* This, IRowset *rowset, HROW row, DBORDINAL ccols, DBORDINAL *columns,
|
HRESULT __RPC_STUB IRowsetNotify_OnFieldChange_Stub(IRowsetNotify* This, IRowset *rowset, HROW row, DBORDINAL ccols, DBORDINAL *columns,
|
||||||
DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %lx %ld %p %d %d %d): stub\n", This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %lx %ld %p %d %d %d)\n", This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_OnFieldChange(This, rowset, row, ccols, columns, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT CALLBACK IRowsetNotify_OnRowsetChange_Proxy(IRowsetNotify* This, IRowset *rowset, DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
HRESULT CALLBACK IRowsetNotify_OnRowsetChange_Proxy(IRowsetNotify* This, IRowset *rowset, DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %d %d %d): stub\n", This, rowset, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %d %d %d)\n", This, rowset, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_RemoteOnRowsetChange_Proxy(This, rowset, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT __RPC_STUB IRowsetNotify_OnRowsetChange_Stub(IRowsetNotify* This, IRowset *rowset, DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
HRESULT __RPC_STUB IRowsetNotify_OnRowsetChange_Stub(IRowsetNotify* This, IRowset *rowset, DBREASON reason, DBEVENTPHASE phase, BOOL cantdeny)
|
||||||
{
|
{
|
||||||
FIXME("(%p)->(%p %d %d %d): stub\n", This, rowset, reason, phase, cantdeny);
|
TRACE("(%p)->(%p %d %d %d)\n", This, rowset, reason, phase, cantdeny);
|
||||||
return E_NOTIMPL;
|
return IRowsetNotify_OnRowsetChange(This, rowset, reason, phase, cantdeny);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user