af062818b47340eef15700d2f0211576ba3506eevboxsync/*
af062818b47340eef15700d2f0211576ba3506eevboxsync * Copyright (C) 2006 Mike McCormack
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * This library is free software; you can redistribute it and/or
af062818b47340eef15700d2f0211576ba3506eevboxsync * modify it under the terms of the GNU Lesser General Public
af062818b47340eef15700d2f0211576ba3506eevboxsync * License as published by the Free Software Foundation; either
af062818b47340eef15700d2f0211576ba3506eevboxsync * version 2.1 of the License, or (at your option) any later version.
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * This library is distributed in the hope that it will be useful,
af062818b47340eef15700d2f0211576ba3506eevboxsync * but WITHOUT ANY WARRANTY; without even the implied warranty of
af062818b47340eef15700d2f0211576ba3506eevboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync * Lesser General Public License for more details.
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * You should have received a copy of the GNU Lesser General Public
af062818b47340eef15700d2f0211576ba3506eevboxsync * License along with this library; if not, write to the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
af062818b47340eef15700d2f0211576ba3506eevboxsync */
af062818b47340eef15700d2f0211576ba3506eevboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync/*
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * a choice of LGPL license versions is made available with the language indicating
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * that LGPLv2 or any later version may be used, or where a choice of which version
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * of the LGPL is applied is otherwise unspecified.
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync */
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync[
af062818b47340eef15700d2f0211576ba3506eevboxsync object,
af062818b47340eef15700d2f0211576ba3506eevboxsync uuid(0c733a8a-2a1c-11ce-ade5-00aa0044773d),
af062818b47340eef15700d2f0211576ba3506eevboxsync pointer_default(unique)
af062818b47340eef15700d2f0211576ba3506eevboxsync]
af062818b47340eef15700d2f0211576ba3506eevboxsyncinterface IDBProperties : IUnknown {
af062818b47340eef15700d2f0211576ba3506eevboxsync [local] HRESULT GetProperties(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertyIDSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[],
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [call_as(GetProperties)] HRESULT RemoteGetProperties(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertyIDSets,
114410893548b9522c46fdcbd8f63385eb8bfb68vboxsync [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out] IErrorInfo **ppErrorInfoRem);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [local] HRESULT GetPropertyInfo(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertyIDSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[],
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcPropertyInfoSets,
114410893548b9522c46fdcbd8f63385eb8bfb68vboxsync [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets,
5112e32d7072e280613921c982a6672f2c859cf3vboxsync [out, annotation("__deref_out_z_opt")] OLECHAR **ppDescBuffer);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [call_as(GetPropertyInfo)] HRESULT RemoteGetPropertyInfo(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertyIDSets,
114410893548b9522c46fdcbd8f63385eb8bfb68vboxsync [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcPropertyInfoSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcOffsets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(,*pcOffsets)] DBBYTEOFFSET **prgDescOffsets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out] ULONG *pcbDescBuffer,
114410893548b9522c46fdcbd8f63385eb8bfb68vboxsync [in, out, unique, size_is(,*pcbDescBuffer)] OLECHAR **ppDescBuffer,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out] IErrorInfo **ppErrorInfoRem);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [local] HRESULT SetProperties(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[]);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [call_as(SetProperties)] HRESULT RemoteSetProperties(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertySets,
114410893548b9522c46fdcbd8f63385eb8bfb68vboxsync [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cTotalProps,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out] IErrorInfo **ppErrorInfoRem);
af062818b47340eef15700d2f0211576ba3506eevboxsync}