rstres.idl 791 B

12345678910111213141516171819202122232425262728293031323334
  1. //-----------------------------------------------------------------------------
  2. // File: rstres.idl
  3. //
  4. // Copyright: Copyright (c) Microsoft Corporation
  5. //
  6. // Contents: OLE DB interface definition
  7. //
  8. // Comments:
  9. //
  10. //-----------------------------------------------------------------------------
  11. #include "idlmulti.h"
  12. //
  13. LOCAL_INTERFACE(0c733a84-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetResynch : IUnknown {
  15. HRESULT GetVisibleData(
  16. [in] HROW hRow,
  17. [in] HACCESSOR hAccessor,
  18. [out] void * pData
  19. );
  20. HRESULT ResynchRows(
  21. [in] DBCOUNTITEM cRows,
  22. [in, size_is(cRows)] const HROW rghRows[],
  23. [out] DBCOUNTITEM * pcRowsResynched,
  24. [out, size_is(,cRows)] HROW ** prghRowsResynched,
  25. [out, size_is(,cRows)] DBROWSTATUS ** prgRowStatus
  26. );
  27. }