SDK/Everything SetSearch
From Wiki
< SDK
Everything_SetSearch
The Everything_SetSearch function sets the search string for the IPC Query.
Syntax
void Everything_SetSearch( LPCTSTR lpString );
Parameters
- lpString
- [in] Pointer to a null-terminated string to be used as the new search text.
Return value
- This function has no return value.
Remarks
- Optionally call this function prior to a call to Everything_Query
- Everything_Query executes the IPC Query using this search string.
Example
// Set the search string to abc AND 123
Everything_SetSearch("abc 123");
// Execute the IPC query.
Everything_Query(FALSE);
Function Information
DLL Requires Everything.dll Header Declared in Everything.h, include Everything.h Library Link to Everything.lib Unicode Implemented as Everything_SetSearchW (Unicode) and Everything_SetSearchA (ANSI).
See Also
