summaryrefslogtreecommitdiffstats
path: root/private/types2/query/isearch.idl
blob: ac4057841f1f7a9404a73f3fb42b6f1cadfd6307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//+-------------------------------------------------------------------------
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 1994.
//
//  File:       isearch.idl
//
//  Contents:   ISearch interface definition
//
//  History:    02-Dec-94   BartoszM        Created
//
//--------------------------------------------------------------------------

#include "idlmulti.h"
LOCAL_INTERFACE(ed8ce7e0-106c-11ce-84e2-00aa004b9986)
interface ISearch : IUnknown
{
    SCODE Init( [in] IFilter * pflt );

    SCODE NextHitMoniker(
                [in, out] ULONG * pcMnk,
                [out, size_is(*pcMnk)] IMoniker *** papMnk );

    SCODE NextHitOffset(
                [in, out] ULONG * pcRegion,
                [out, size_is(*pcRegion)] FILTERREGION ** paRegion );

}