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.

29 lines
873 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1998.
  5. //
  6. // File: isearch.idl
  7. //
  8. // Contents: ISearchQueryHits interface definition
  9. //
  10. // History: 02-Dec-94 BartoszM Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "idlmulti.h"
  14. LOCAL_INTERFACE(ed8ce7e0-106c-11ce-84e2-00aa004b9986)
  15. interface ISearchQueryHits : IUnknown
  16. {
  17. SCODE Init( [in] IFilter * pflt,
  18. [in] ULONG ulFlags );
  19. SCODE NextHitMoniker(
  20. [in, out] ULONG * pcMnk,
  21. [out, size_is(*pcMnk)] IMoniker *** papMnk );
  22. SCODE NextHitOffset(
  23. [in, out] ULONG * pcRegion,
  24. [out, size_is(*pcRegion)] FILTERREGION ** paRegion );
  25. }