rstxsc.idl 663 B

12345678910111213141516171819202122232425262728
  1. //-----------------------------------------------------------------------------
  2. // File: rstxsc.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(0c733a7f-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetExactScroll : IRowsetScroll {
  15. HRESULT GetExactPosition(
  16. [in] HCHAPTER hChapter,
  17. [in] DBBKMARK cbBookmark,
  18. [in, size_is(cbBookmark)] const BYTE * pBookmark,
  19. [out] DBCOUNTITEM * pulPosition,
  20. [out] DBCOUNTITEM * pcRows
  21. );
  22. }