Everything_GetTotFolderResults

The Everything_GetTotFolderResults function returns the total number of folder results.

Syntax

DWORD Everything_GetTotFolderResults(void);

Parameters

This functions has no parameters.

Return Value

Returns the total number of folder results.

If the function fails the return value is 0. To get extended error information, call .

Error code Meaning
EVERYTHING_ERROR_INVALIDCALL Call before calling Everything_GetTotFolderResults.

Remarks

You must call before calling Everything_GetTotFolderResults.

Use to retrieve the number of visible folder results.

Use the result offset and max result values to limit the number of visible results.

Everything_GetTotFolderResults is not supported when using

Example


// set the search text to abc AND 123
Everything_SetSearch("abc 123");
// execute the query
Everything_Query(TRUE);
// get the total number of folder results.
DWORD dwTotFolderResults = Everything_GetTotFolderResults();

See Also