rstscr.idl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // File: rstscr.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.     
  14.     LOCAL_INTERFACE(0c733a7e-2a1c-11ce-ade5-00aa0044773d)
  15.     
  16. interface IRowsetScroll : IRowsetLocate {
  17. HRESULT GetApproximatePosition(
  18. [in] HCHAPTER hReserved,
  19. [in] DBBKMARK cbBookmark,
  20. [in, size_is(cbBookmark)] const BYTE * pBookmark,
  21. [out] DBCOUNTITEM * pulPosition,
  22. [out] DBCOUNTITEM * pcRows
  23. );
  24. HRESULT GetRowsAtRatio(
  25. [in] HWATCHREGION hReserved1,
  26. [in] HCHAPTER hReserved2,
  27. [in] DBCOUNTITEM ulNumerator,
  28. [in] DBCOUNTITEM ulDenominator,
  29. [in] DBROWCOUNT cRows,
  30. [out] DBCOUNTITEM * pcRowsObtained,
  31. [out, size_is(,cRows)] HROW ** prghRows
  32. );
  33. }