mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
include: Add rstidn.idl.
This commit is contained in:
parent
bd87319b5f
commit
3a736901cd
Notes:
Alexandre Julliard
2024-10-25 23:42:31 +02:00
Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/wine/merge_requests/6732
4 changed files with 51 additions and 0 deletions
|
@ -1810,3 +1810,16 @@ HRESULT __RPC_STUB ITransactionObject_GetTransactionObject_Stub(ITransactionObje
|
|||
FIXME("(%p)->(%ld, %p, %p): stub\n", This, level, transaction, info);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
HRESULT CALLBACK IRowsetIdentity_IsSameRow_Proxy(IRowsetIdentity* This, HROW hThisRow, HROW hThatRow)
|
||||
{
|
||||
FIXME("(%p)->(%Id, %Id): stub\n", This, hThisRow, hThatRow);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
HRESULT __RPC_STUB IRowsetIdentity_IsSameRow_Stub(IRowsetIdentity* This, HROW hThisRow,
|
||||
HROW hThatRow, IErrorInfo **error_info)
|
||||
{
|
||||
FIXME("(%p)->(%Id, %Id, %p): stub\n", This, hThisRow, hThatRow, error_info);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -680,6 +680,7 @@ SOURCES = \
|
|||
rstbas.idl \
|
||||
rstchg.idl \
|
||||
rstfnd.idl \
|
||||
rstidn.idl \
|
||||
rstinf.idl \
|
||||
rstloc.idl \
|
||||
rstnot.idl \
|
||||
|
|
|
@ -81,6 +81,7 @@ typedef LONG_PTR DB_LRESERVE;
|
|||
#include "cmdpre.idl"
|
||||
#include "rstchg.idl"
|
||||
#include "rstupd.idl"
|
||||
#include "rstidn.idl"
|
||||
#include "mulres.idl"
|
||||
#include "transact.idl"
|
||||
#include "trnjoi.idl"
|
||||
|
|
36
include/rstidn.idl
Normal file
36
include/rstidn.idl
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright (C) 2024 Alistair Leslie-Hughes
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#if 0
|
||||
#pragma makedep install
|
||||
#endif
|
||||
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(0c733a09-2a1c-11ce-ade5-00aa0044773d),
|
||||
pointer_default(unique)
|
||||
]
|
||||
interface IRowsetIdentity : IUnknown
|
||||
{
|
||||
[local]
|
||||
HRESULT IsSameRow([in] HROW hThisRow, [in] HROW hThatRow);
|
||||
|
||||
[call_as(IsSameRow)]
|
||||
HRESULT RemoteIsSameRow( [in] HROW hThisRow, [in] HROW hThatRow, [out] IErrorInfo **error_info);
|
||||
}
|
Loading…
Reference in a new issue