Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygendbdsad.idl
Go to the documentation of this file.
00001 /* 00002 * Copyright (C) 2009 Huw Davies 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00017 */ 00018 00019 [ 00020 object, 00021 uuid(0c733a7a-2a1c-11ce-ade5-00aa0044773d), 00022 pointer_default(unique) 00023 ] 00024 interface IDBDataSourceAdmin : IUnknown 00025 { 00026 [local] 00027 HRESULT CreateDataSource([in] ULONG cPropertySets, 00028 [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[], 00029 [in] IUnknown *pUnkOuter, 00030 [in] REFIID riid, 00031 [out, iid_is(riid)] IUnknown **ppDBSession); 00032 00033 [call_as(CreateDataSource)] 00034 HRESULT RemoteCreateDataSource([in] ULONG cPropertySets, 00035 [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, 00036 [in] IUnknown *pUnkOuter, 00037 [in] REFIID riid, 00038 [in, out, unique, iid_is(riid)] IUnknown **ppDBSession, 00039 [in] ULONG cTotalProps, 00040 [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, 00041 [out] IErrorInfo **ppErrorInfoRem); 00042 00043 [local] 00044 HRESULT DestroyDataSource(); 00045 00046 [call_as(DestroyDataSource)] 00047 HRESULT RemoteDestroyDataSource([out] IErrorInfo **ppErrorInfoRem); 00048 00049 [local] 00050 HRESULT GetCreationProperties([in] ULONG cPropertyIDSets, 00051 [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], 00052 [in, out] ULONG *pcPropertyInfoSets, 00053 [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, 00054 [out, annotation("__deref_out_z_opt")] OLECHAR **ppDescBuffer); 00055 00056 [call_as(GetCreationProperties)] 00057 HRESULT RemoteGetCreationProperties([in] ULONG cPropertyIDSets, 00058 [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, 00059 [in, out] ULONG *pcPropertyInfoSets, 00060 [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, 00061 [in, out] DBCOUNTITEM *pcOffsets, 00062 [out, size_is(,(ULONG)*pcOffsets)] DBBYTEOFFSET **prgDescOffsets, 00063 [in, out] ULONG *pcbDescBuffer, 00064 [in, out, unique, size_is(,*pcbDescBuffer)] OLECHAR **ppDescBuffer, 00065 [out] IErrorInfo **ppErrorInfoRem); 00066 00067 [local] 00068 HRESULT ModifyDataSource([in] ULONG cPropertySets, 00069 [in, size_is(cPropertySets)] DBPROPSET rgPropertySets[]); 00070 00071 [call_as(ModifyDataSource)] 00072 HRESULT RemoteModifyDataSource([in] ULONG cPropertySets, 00073 [in, size_is(cPropertySets)] DBPROPSET *rgPropertySets, 00074 [out] IErrorInfo **ppErrorInfoRem); 00075 } Generated on Mon May 28 2012 04:31:05 for ReactOS by
1.7.6.1
|