/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: rstfnd.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(0c733a9d-2a1c-11ce-ade5-00aa0044773d) interface IRowsetFind : IUnknown { HRESULT FindNextRow( [in] HCHAPTER hChapter, [in] HACCESSOR hAccessor, [in] void * pFindValue, [in] DBCOMPAREOP CompareOp, [in] DBBKMARK cbBookmark, [in, size_is(cbBookmark)] const BYTE * pBookmark, [in] DBROWOFFSET lRowsOffset, [in] DBROWCOUNT cRows, [in, out] DBCOUNTITEM * pcRowsObtained, [out, size_is(,*pcRowsObtained)] HROW ** prghRows ); } cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion