Handle of a dtsSearchResults to store the results of this search.
void * resultsHandle;
To obtain a handle, declare a dtsSearchResults object and call its getHandle() method. After the search, you can use the dtsSearchResults object to access the results of the search.
dtsSearchResults searchResults; dtsSearchJob searchJob; // ... set up searchJob ... searchJob.resultsHandle = searchResults.getHandle(); short errorFlag; dtssDoSearchJob(searchJob, errorFlag); // .. now searchResults contains the results of the search
|
Copyright (c) 1995-2012 dtSearch Corp. All rights reserved.
|