The Everything_SetSearch function sets the search string for the IPC Query.
void Everything_SetSearch(
LPCTSTR lpString
);
lpString [in]
Pointer to a null-terminated string to be used as the new search text.
This function has no return value.
Optionally call this function prior to a call to Everything_Query
Everything_Query executes the IPC Query using this search string.
// Set the search string to abc AND 123
Everything_SetSearch("abc 123");
// Execute the IPC query.
Everything_Query(TRUE);