/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: rstcei.idl // // Contents: // // Comments: // //----------------------------------------------------------------------------- cpp_quote("#include ") #pragma region Desktop Family cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") import "oledb.idl"; #include "idlmulti.h" // LOCAL_INTERFACE(0c733a8f-2a1c-11ce-ade5-00aa0044773d) interface IRowsetChangeExtInfo : IUnknown { HRESULT GetOriginalRow( [in] HCHAPTER hReserved, [in] HROW hRow, [out] HROW *phRowOriginal ); HRESULT GetPendingColumns( [in] HCHAPTER hReserved, [in] HROW hRow, [in] DBORDINAL cColumnOrdinals, [in, size_is(cColumnOrdinals)] const DBORDINAL rgiOrdinals[], [out, size_is(cColumnOrdinals)] DBPENDINGSTATUS rgColumnStatus[] ); } cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion