1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Correct IRowsetNotify HROW parameter type.

This commit is contained in:
Alistair Leslie-Hughes 2024-05-28 08:28:36 +10:00 committed by Alexandre Julliard
parent 447f817445
commit b6eada5e2f
2 changed files with 4 additions and 4 deletions

View File

@ -1180,14 +1180,14 @@ HRESULT __RPC_STUB IDBAsynchStatus_GetStatus_Stub(IDBAsynchStatus* This, HCHAPTE
return hr;
}
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, const HROW *hrows, DBREASON reason,
DBEVENTPHASE phase, BOOL cantdeny)
{
TRACE("(%p)->(%p %Id %p %ld %ld %d)\n", This, rowset, rows, hrows, reason, phase, cantdeny);
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, const HROW *hrows, DBREASON reason,
DBEVENTPHASE phase, BOOL cantdeny)
{
TRACE("(%p)->(%p %Id %p %ld %ld %d)\n", This, rowset, rows, hrows, reason, phase, cantdeny);

View File

@ -49,7 +49,7 @@ interface IRowsetNotify : IUnknown
[local]
HRESULT OnRowChange([in] IRowset *rowset,
[in] DBCOUNTITEM rows,
[in, size_is((ULONG)rows)] HROW *hrows,
[in, size_is((ULONG)rows)] const HROW *hrows,
[in] DBREASON reason,
[in] DBEVENTPHASE phase,
[in] BOOL cantdeny);
@ -58,7 +58,7 @@ interface IRowsetNotify : IUnknown
HRESULT RemoteOnRowChange(
[in] IRowset *rowset,
[in] DBCOUNTITEM rows,
[in, size_is((ULONG)rows)] HROW *hrows,
[in, size_is((ULONG)rows)] const HROW *hrows,
[in] DBREASON reason,
[in] DBEVENTPHASE phase,
[in] BOOL cantdeny);