EE_FIND_IN_FILESW¶
Searches for an Unicode string from multiple files in the specified path. The list of searched files will be displayed in the current window. If the current document is modified, displays the prompt message box whether to save the changes to the current file. You can send this message explicitly or use the Editor_FindInFilesW or Editor_BatchFindInFiles inline function.
EE_FIND_IN_FILESW
wParam = 0;
lParam = (LPARAM) (GREP_INFO_EX*) pGrepInfo;
or
EE_FIND_IN_FILESW
wParam = (WPARAM) (BATCH_GREP_INFO*) pBatchGrepInfo;
lParam = (LPARAM) (FIND_REPLACE_INFO*) pBatchArray;
Parameters¶
pGrepInfo
If no batch search is specified, this parameter specifies a pointer to the GREP_INFO_EX structure or GREP_INFOW structure. Newer plug-ins should use the GREP_INFO_EX structure.
pBatchGrepInfo
If a batch search is specified, this parameter specifies a pointer to the BATCH_GREP_INFO structure.
pBatchArray
If a batch search is specified, this parameter specifies a pointer to the array of FIND_REPLACE_INFO structures.
Return Value¶
Returns FALSE if the user aborts, or TRUE if not.
Version¶
Supported on EmEditor Professional Version 4.02 or later.