SetWinEventHook

The SetWinEventHook function sets an event hook function for a range of events.

HWINEVENTHOOK WINAPI SetWinEventHook(
UINTeventMin,UINTeventMax,HMODULEhmodWinEventProc,WINEVENTPROClpfnWinEventProc,DWORDidProcess,DWORDidThread,UINTdwflags);

Parameters

  • eventMin
    [in] Specifies the event constant for the lowest event value in the range of events handled by the hook function. This parameter is EVENT_MIN to indicate the lowest possible event value.

  • eventMax
    [in] Specifies the event constant for the highest event value in the range of events handled by the hook function. This parameter is EVENT_MAX to indicate the highest possible event value.

  • hmodWinEventProc
    [in] Handle to the dynamic-link library (DLL) that contains the hook function at lpfnWinEventProc if the WINEVENT_INCONTEXT flag is specified in the dwFlags parameter. If the hook function is not located in a DLL, or if the WINEVENT_OUTOFCONTEXT flag is specified, this parameter is NULL.

  • lpfnWinEventProc
    [in] Pointer to the event hook function. For more information about this function, see WinEventProc Callback Function.

  • idProcess
    [in] Specifies the ID of the process from which the hook function receives events. Specify zero (0) to receive events from all processes.

  • idThread
    [in] Specifies the ID of the thread from which the hook function receives events. If this parameter is zero, the hook function is associated with all existing threads.

  • dwflags
    [in] Flag values that specify the location of the hook function and events to skip. The following flags are valid:

    • WINEVENT_INCONTEXT
      The DLL that contains the callback function is mapped into the address space of the process that generates the event. With this flag, the system sends event notifications to the callback function as they occur. The hook function must be in a DLL when this flag is specified. This flag has no effect when the calling process and the generating process are not both 32-bit processes or both 64-bit processes, or when the generating process is a console application. For more information, see In-Context Hook Functions.
    • WINEVENT_OUTOFCONTEXT
      The callback function is not mapped into the address space of the process that generates the event. Because the hook function is called across process boundaries, the system must queue events. Although this method is asynchronous, events are guaranteed to be in sequential order. For more information, see Out-of-Context Hook Functions.
    • WINEVENT_SKIPOWNPROCESS
      Prevents this instance of the hook from receiving events generated by threads in this process. This flag does not prevent threads from generating events.
    • WINEVENT_SKIPOWNTHREAD
      Prevents this instance of the hook from receiving events generated by the thread that is registering this hook.

    The following flag combinations are valid:

    • WINEVENT_INCONTEXT | WINEVENT_SKIPOWNPROCESS
    • WINEVENT_INCONTEXT | WINEVENT_SKIPOWNTHREAD
    • WINEVENT_OUTOFCONTEXT | WINEVENT_SKIPOWNPROCESS
    • WINEVENT_OUTOFCONTEXT | WINEVENT_SKIPOWNTHREAD

    Additionally, client applications can specify WINEVENT_INCONTEXT, or WINEVENT_OUTOFCONTEXT alone.

Return Values

If successful, returns an HWINEVENTHOOK value that identifies this event hook instance. Applications save this return value to use with the UnhookWinEvent function.

If unsuccessful, returns zero.

Remarks

This function allows clients to specify which processes and threads they are interested in.

If the idProcess parameter is non-zero and idThread is zero, the hook function receives the specified events from all threads in that process. If the idProcess parameter is zero and idThread is non-zero, the hook function receives the specified events only from the thread specified by idThread. If both are zero, the hook function receives the specified events from all threads and processes.

Clients can call SetWinEventHook multiple times if they want to register additional hook functions or listen for additional events.

The client thread that calls SetWinEventHook must have a message loop in order to receive events.

When you use SetWinEventHook to set a callback in managed code, you should use the GCHandle Structure to avoid exceptions. This tells the garbage collector not to move the callback.

For out-of-context events, the event is delivered on the same thread that called SetWinEventHook. In some situations, even if you request WINEVENT_INCONTEXT events, the events will still be delivered out-of-context. These scenarios include events from console windows and events from processes that have a different bit-depth (64 bit versus 32 bits) than the caller.

Example

The follow example code shows how a client application might listen for menu-start and menu-end events. For simplicity, the event handler just sends some information to the standard output.

// Global variable.
HWINEVENTHOOK g_hook;

// Initializes COM and sets up the event hook.
//
void InitializeMSAA()
{
    CoInitialize(NULL);
    g_hook = SetWinEventHook(
        EVENT_SYSTEM_MENUSTART, EVENT_SYSTEM_MENUEND,  // Range of events (4 to 5).
        NULL,                                          // Handle to DLL.
        HandleWinEvent,                                // The callback.
        0, 0,              // Process and thread IDs of interest (0 = all)
        WINEVENT_OUTOFCONTEXT | WINEVENT_SKIPOWNPROCESS); // Flags.
}

// Unhooks the event and shuts down COM.
//
void ShutdownMSAA()
{
    UnhookWinEvent(g_hook);
    CoUninitialize();
}

// Callback function that handles events.
//
void CALLBACK HandleWinEvent(HWINEVENTHOOK hook, DWORD event, HWND hwnd, 
                             LONG idObject, LONG idChild, 
                             DWORD dwEventThread, DWORD dwmsEventTime)
{
    IAccessible* pAcc = NULL;
    VARIANT varChild;
    HRESULT hr = AccessibleObjectFromEvent(hwnd, idObject, idChild, &pAcc;, &varChild;);  
    if ((hr == S_OK) && (pAcc != NULL))
    {
        BSTR bstrName;
        pAcc->get_accName(varChild, &bstrName;);
        if (event == EVENT_SYSTEM_MENUSTART) 
        {
            printf("Begin: ");
        }
        else if (event == EVENT_SYSTEM_MENUEND)
        {
            printf("End:   ");
        }
        printf("%S\n", bstrName);
        SysFreeString(bstrName);
        pAcc->Release();
    }
}

Requirements

**  Windows NT/2000/XP/Server 2003:** Included in Windows 2000 and later.
**  Windows 95/98/Me:** Included in Windows 98 and later.
**  Redistributable:** Requires Active Accessibility 1.3 RDK on Windows NT 4.0 SP6 and Windows 95.
**  Header:** Declared in Winuser.h; include Windows.h.
**  Library:** Use User32.lib.

See Also

Registering a Hook Function, WinEventProc Callback Function, UnhookWinEvent