oledb32: Added IRowPositionChange interface definition.

This commit is contained in:
Nikolay Sivov 2013-08-01 07:57:55 +04:00 committed by Alexandre Julliard
parent 0e2e838697
commit 2a78e48e20
5 changed files with 53 additions and 0 deletions

View file

@ -1477,3 +1477,17 @@ HRESULT CALLBACK IRowPosition_SetRowPosition_Proxy(IRowPosition* This, HCHAPTER
FIXME("(%p)->(%lx %lx %d): stub\n", This, chapter, row, flags);
return E_NOTIMPL;
}
HRESULT __RPC_STUB IRowPositionChange_OnRowPositionChange_Stub(IRowPositionChange* This, DBREASON reason, DBEVENTPHASE phase,
BOOL cant_deny, IErrorInfo **errorinfo)
{
FIXME("(%p)->(0x%x 0x%x %d %p): stub\n", This, reason, phase, cant_deny, errorinfo);
return E_NOTIMPL;
}
HRESULT CALLBACK IRowPositionChange_OnRowPositionChange_Proxy(IRowPositionChange* This, DBREASON reason, DBEVENTPHASE phase,
BOOL cant_deny)
{
FIXME("(%p)->(0x%x 0x%x %d): stub\n", This, reason, phase, cant_deny);
return E_NOTIMPL;
}

View file

@ -481,6 +481,7 @@ SRCDIR_INCLUDES = \
row.idl \
rowchg.idl \
rowpos.idl \
rowpsc.idl \
rpc.h \
rpcasync.h \
rpcdce.h \

View file

@ -65,6 +65,7 @@ typedef DWORD_PTR DBHASHVALUE;
#include "row.idl"
#include "rowchg.idl"
#include "rowpos.idl"
#include "rowpsc.idl"
#include "binres.idl"
#include "crtrow.idl"
#include "errrec.idl"

36
include/rowpsc.idl Normal file
View file

@ -0,0 +1,36 @@
/*
* Copyright (C) 2013 Nikolay Sivov
*
* 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
*/
[
object,
uuid(0997a571-126e-11d0-9f8a-00a0c9a0631e),
pointer_default(unique)
]
interface IRowPositionChange : IUnknown
{
[local]
HRESULT OnRowPositionChange([in] DBREASON reason,
[in] DBEVENTPHASE phase,
[in] BOOL cant_deny);
[call_as(OnRowPositionChange)]
HRESULT RemoteOnRowPositionChange([in] DBREASON reason,
[in] DBEVENTPHASE phase,
[in] BOOL cant_deny,
[out] IErrorInfo **errorinfo);
}

View file

@ -156,6 +156,7 @@ my %private_idl_headers = (
"row.idl" => 1,
"rowchg.idl" => 1,
"rowpos.idl" => 1,
"rowpsc.idl" => 1,
"rstbas.idl" => 1,
"rstinf.idl" => 1,
"rstloc.idl" => 1,