Contents Index Topic Contents | ||
Previous Topic: FORWARD_WM_NOTIFY Next Topic: INDEXTOSTATEIMAGEMASK |
HANDLE_WM_NOTIFY
HANDLE_WM_NOTIFY( hwnd, wParam, lParam, fn );Calls a function that processes the WM_NOTIFY message.
- Returns a value whose meaning depends on the fn parameter.
- 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.
The HANDLE_WM_NOTIFY macro is defined as follows:
#define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \ (fn)((hwnd), (int)(wParam), (NMHDR FAR*)(lParam))
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.