Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1999.
  5. //
  6. // File: rststa.idl
  7. //
  8. // Contents: Index Server private OLE DB interface definition
  9. //
  10. // History: 27 Sep 1995 AlanW Created
  11. // 27 Feb 1997 KyleP Added properties for scope
  12. //
  13. //--------------------------------------------------------------------------
  14. #include "idlmulti.h"
  15. //
  16. LOCAL_INTERFACE(a7ac77ed-f8d7-11ce-a798-0020f8008024)
  17. interface IRowsetQueryStatus : IUnknown {
  18. HRESULT GetStatus(
  19. [out] DWORD * pdwStatus
  20. );
  21. HRESULT GetStatusEx(
  22. [out] DWORD * pdwStatus,
  23. [out] DWORD * pcFilteredDocuments,
  24. [out] DWORD * pcDocumentsToFilter,
  25. [out] ULONG_PTR * pdwRatioFinishedDenominator,
  26. [out] ULONG_PTR * pdwRatioFinishedNumerator,
  27. [in] ULONG_PTR cbBmk,
  28. [in, size_is(cbBmk)] const BYTE * pBmk,
  29. [out] ULONG_PTR * piRowBmk,
  30. [out] ULONG_PTR * pcRowsTotal
  31. );
  32. }