Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenaccess.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(0c733a8c-2a1c-11ce-ade5-00aa0044773d), 00022 pointer_default(unique) 00023 ] 00024 interface IAccessor : IUnknown 00025 { 00026 00027 typedef DWORD DBACCESSORFLAGS; 00028 00029 typedef DWORD DBBINDSTATUS; 00030 00031 [local] 00032 HRESULT AddRefAccessor([in] HACCESSOR hAccessor, 00033 [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); 00034 00035 [call_as(AddRefAccessor)] 00036 HRESULT RemoteAddRefAccessor([in] HACCESSOR hAccessor, 00037 [in, out, unique] DBREFCOUNT *pcRefCount, 00038 [out] IErrorInfo **ppErrorInfoRem); 00039 00040 [local] 00041 HRESULT CreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, 00042 [in] DBCOUNTITEM cBindings, 00043 [in, size_is(cBindings), annotation("__in_ecount(cBindings)")] const DBBINDING rgBindings[], 00044 [in] DBLENGTH cbRowSize, 00045 [out, annotation("__out")] HACCESSOR *phAccessor, 00046 [out, size_is(cBindings), annotation("__out_ecount_opt(cBindings)")] DBBINDSTATUS rgStatus[]); 00047 00048 [call_as(CreateAccessor)] 00049 HRESULT RemoteCreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, 00050 [in] DBCOUNTITEM cBindings, 00051 [in, unique, size_is(cBindings)] DBBINDING *rgBindings, 00052 [in] DBLENGTH cbRowSize, 00053 [out] HACCESSOR *phAccessor, 00054 [in, out, unique, size_is(cBindings)] DBBINDSTATUS *rgStatus, 00055 [out] IErrorInfo **ppErrorInfoRem); 00056 00057 [local] 00058 HRESULT GetBindings([in] HACCESSOR hAccessor, 00059 [out, annotation("__out")] DBACCESSORFLAGS *pdwAccessorFlags, 00060 [in, out, annotation("__out_opt")] DBCOUNTITEM *pcBindings, 00061 [out, size_is(,*pcBindings), annotation("__deref_out_ecount_opt(*pcBindings)")] DBBINDING **prgBindings); 00062 00063 [call_as(GetBindings)] 00064 HRESULT RemoteGetBindings([in] HACCESSOR hAccessor, 00065 [out] DBACCESSORFLAGS *pdwAccessorFlags, 00066 [in, out] DBCOUNTITEM *pcBindings, 00067 [out, size_is(,*pcBindings)] DBBINDING **prgBindings, 00068 [out] IErrorInfo **ppErrorInfoRem); 00069 00070 [local] 00071 HRESULT ReleaseAccessor([in] HACCESSOR hAccessor, 00072 [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); 00073 00074 [call_as(ReleaseAccessor)] 00075 HRESULT RemoteReleaseAccessor([in] HACCESSOR hAccessor, 00076 [in, out, unique] DBREFCOUNT *pcRefCount, 00077 [out] IErrorInfo **ppErrorInfoRem); 00078 00079 }; Generated on Sun May 27 2012 04:31:06 for ReactOS by
1.7.6.1
|