DrtContinueSearch function (drt.h)

The DrtContinueSearch function continues an iterative search for a key.This function is used only when the fIterative flag is set to 'true' in the associated DRT_SEARCH_INFO structure. Call this after getting a DRT_MATCH_INTERMEDIATE search result.

Syntax

HRESULT DrtContinueSearch(
  [in] HDRT_SEARCH_CONTEXT hSearchContext
);

Parameters

[in] hSearchContext

Handle to the search context to close. This parameter is returned by the DrtStartSearch API.

Return value

This function returns S_OK on success. Other possible values include:

Return code Description
E_HANDLE
The hSearchContext handle is invalid.
E_UNEXPECTED
This search is not an iterative search.

Requirements

Requirement Value
Minimum supported client Windows 7 Professional [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header drt.h
Library Drt.lib
DLL Drt.dll

See also

DRT_SEARCH_INFO

DrtEndSearch

DrtStartSearch