The Everything_SetReplyWindow function sets the window that will receive the the IPC Query results.
void Everything_SetReplyWindow(
HWND hWnd
);
hWnd
The handle to the window that will receive the IPC Query reply.
This function has no return value.
This function must be called before calling Everything_Query with bWait set to FALSE.
Check for results with the specified window using Everything_IsQueryReply.
Call Everything_SetReplyID with a unique identifier to specify multiple searches.
// reply to this window.
Everything_SetReplyWindow(hwnd);
// execute the query
Everything_Query(TRUE);