/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: rowchg.idl // // Contents: OLE DB interface definition // // Comments: // //----------------------------------------------------------------------------- cpp_quote("#include ") #pragma region Desktop Family cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") #include "idlmulti.h" LOCAL_INTERFACE(0c733ab5-2a1c-11ce-ade5-00aa0044773d) interface IRowChange : IUnknown { [local] HRESULT SetColumns( [in] DBORDINAL cColumns, [in, out, size_is(cColumns), annotation("_In_reads_(cColumns)")] DBCOLUMNACCESS rgColumns[] ); }; cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion