HANDLE_WM_NOTIFY (Windows CE 5.0)

Send Feedback

This macro calls a function that processes the WM_NOTIFY message.

HANDLE_WM_NOTIFY( hwnd, wParam, lParam, fn);

Parameters

  • hwnd
    Handle to the window that received WM_NOTIFY.
  • wParam
    First parameter of WM_NOTIFY.
  • lParam
    Second parameter of WM_NOTIFY.
  • fn
    Function that is to process WM_NOTIFY.

Return Values

The meaning of the value depends on the fn parameter.

Remarks

The HANDLE_WM_NOTIFY macro is defined as follows.

#define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \ 
    (fn)((hwnd), (int)(wParam), (NMHDR FAR*)(lParam)) 

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.

See Also

Common Control Macros | WM_NOTIFY

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.