Everything_SetReplyWindow
The
Everything_SetReplyWindow function sets the window that will receive the the IPC Query results.
Syntax
void Everything_SetReplyWindow(
HWND hWnd
);
Parameters
- hWnd
- The handle to the window that will receive the IPC Query reply.
Return Value
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.
Example
// reply to this window.
Everything_SetReplyWindow(hwnd);
// execute the query
Everything_Query(FALSE);
See Also