I try to inject a dll to a process through SetWinEventHook.
SetWinEventHook(EVENT_OBJECT_TEXTSELECTIONCHANGED, EVENT_OBJECT_TEXTSELECTIONCHANGED, NULL , HandleWinEvent, iexploreId , 0, WINEVENT_OUTOFCONTEXT))
The hooked function is called, but I don't see that the dll is loaded to the hooked process. Doesn't SetWinEventHook implement loading the dll to the hooked process?
Thanks!