dbprop.idl revision af062818b47340eef15700d2f0211576ba3506ee
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
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,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, 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,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync [call_as(GetPropertyInfo)] HRESULT RemoteGetPropertyInfo(
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cPropertyIDSets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in,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,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, 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,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in, out, size_is(cPropertySets)] DBPROPSET *rgPropertySets,
af062818b47340eef15700d2f0211576ba3506eevboxsync [in] ULONG cTotalProps,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus,
af062818b47340eef15700d2f0211576ba3506eevboxsync [out] IErrorInfo **ppErrorInfoRem);
af062818b47340eef15700d2f0211576ba3506eevboxsync}