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
29 lines
873 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1998.
|
|
//
|
|
// File: isearch.idl
|
|
//
|
|
// Contents: ISearchQueryHits interface definition
|
|
//
|
|
// History: 02-Dec-94 BartoszM Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include "idlmulti.h"
|
|
LOCAL_INTERFACE(ed8ce7e0-106c-11ce-84e2-00aa004b9986)
|
|
interface ISearchQueryHits : IUnknown
|
|
{
|
|
SCODE Init( [in] IFilter * pflt,
|
|
[in] ULONG ulFlags );
|
|
|
|
SCODE NextHitMoniker(
|
|
[in, out] ULONG * pcMnk,
|
|
[out, size_is(*pcMnk)] IMoniker *** papMnk );
|
|
|
|
SCODE NextHitOffset(
|
|
[in, out] ULONG * pcRegion,
|
|
[out, size_is(*pcRegion)] FILTERREGION ** paRegion );
|
|
}
|
|
|