include: Add trnobj.idl.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2cc43651aa
commit
d8d1acef96
|
@ -1796,3 +1796,17 @@ HRESULT __RPC_STUB ITransactionLocal_StartTransaction_Stub(ITransactionLocal* Th
|
||||||
FIXME("(%p)->(%d, 0x%08x, %p, %p, %p): stub\n", This, level, flags, options, trans_level, info);
|
FIXME("(%p)->(%d, 0x%08x, %p, %p, %p): stub\n", This, level, flags, options, trans_level, info);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT CALLBACK ITransactionObject_GetTransactionObject_Proxy(ITransactionObject* This,
|
||||||
|
ULONG level, ITransaction **transaction)
|
||||||
|
{
|
||||||
|
FIXME("(%p)->(%d, %p): stub\n", This, level, transaction);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT __RPC_STUB ITransactionObject_GetTransactionObject_Stub(ITransactionObject* This,
|
||||||
|
ULONG level, ITransaction **transaction, IErrorInfo **info)
|
||||||
|
{
|
||||||
|
FIXME("(%p)->(%d, %p, %p): stub\n", This, level, transaction, info);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -718,6 +718,7 @@ SOURCES = \
|
||||||
transact.idl \
|
transact.idl \
|
||||||
trnjoi.idl \
|
trnjoi.idl \
|
||||||
trnlcl.idl \
|
trnlcl.idl \
|
||||||
|
trnobj.idl \
|
||||||
twain.h \
|
twain.h \
|
||||||
txcoord.idl \
|
txcoord.idl \
|
||||||
txdtc.idl \
|
txdtc.idl \
|
||||||
|
|
|
@ -82,6 +82,7 @@ typedef LONG_PTR DB_LRESERVE;
|
||||||
#include "transact.idl"
|
#include "transact.idl"
|
||||||
#include "trnjoi.idl"
|
#include "trnjoi.idl"
|
||||||
#include "trnlcl.idl"
|
#include "trnlcl.idl"
|
||||||
|
#include "trnobj.idl"
|
||||||
#include "cmdwpr.idl"
|
#include "cmdwpr.idl"
|
||||||
|
|
||||||
cpp_quote("#include <accctrl.h>")
|
cpp_quote("#include <accctrl.h>")
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2022 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(0c733a60-2a1c-11ce-ade5-00aa0044773d),
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface ITransactionObject : IUnknown {
|
||||||
|
|
||||||
|
[local]
|
||||||
|
HRESULT GetTransactionObject([in] ULONG level, [out] ITransaction **transaction);
|
||||||
|
|
||||||
|
[call_as(GetTransactionObject)]
|
||||||
|
HRESULT RemoteGetTransactionObject([in] ULONG level, [out] ITransaction **transaction, [out] IErrorInfo **info);
|
||||||
|
}
|
Loading…
Reference in New Issue