Alistair Leslie-Hughes : include: Correct IRowsetNotify HROW parameter type.
Module: wine Branch: master Commit: b6eada5e2f9e3c86c18df118cddd20e6212f64de URL: https://gitlab.winehq.org/wine/wine/-/commit/b6eada5e2f9e3c86c18df118cddd20e... Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Date: Tue May 28 08:28:36 2024 +1000 include: Correct IRowsetNotify HROW parameter type. --- dlls/msdaps/usrmarshal.c | 4 ++-- include/rstnot.idl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/msdaps/usrmarshal.c b/dlls/msdaps/usrmarshal.c index 10b840b1991..48308c7ee71 100644 --- a/dlls/msdaps/usrmarshal.c +++ b/dlls/msdaps/usrmarshal.c @@ -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); diff --git a/include/rstnot.idl b/include/rstnot.idl index 9e6975f9c78..048ac887b4f 100644 --- a/include/rstnot.idl +++ b/include/rstnot.idl @@ -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);
participants (1)
-
Alexandre Julliard