Everything_GetResultDateRun

The Everything_GetResultDateRun function retrieves the run date of a visible result.

Syntax

BOOL Everything_GetResultDateRun(
DWORD dwIndex,
FILETIME *lpDateRun
);

Parameters


dwIndex

Zero based index of the visible result.


lpDateRun

Pointer to a FILETIME to hold the Run date of the result.


Return Value

The function returns non-zero if successful.

The function returns 0 if the run date information is unavailable. To get extended error information, call

Error code Meaning
EVERYTHING_ERROR_INVALIDCALL Call before calling Everything_GetResultDateRun.
EVERYTHING_ERROR_INVALIDREQUEST Run date was not requested or is unavailable, Call with EVERYTHING_REQUEST_DATE_RUN before calling .
EVERYTHING_ERROR_INVALIDINDEX index must be greater than or equal to 0 and less than the visible number of results.

Remarks

dwIndex must be a valid visible result index. To determine if a result index is visible use the function.

Example

FILETIME dateRun;
// set the search text to abc AND 123
Everything_SetSearch("abc 123");
// execute the query
Everything_Query(TRUE);
// Get the run date of the first visible result.
Everything_GetResultDateRun(0,&dateRun);

Function Information

Requires Everything 1.4.1 or later.

See Also