Prev Next
The HANDLE_WM_NOTIFY 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
Returns a value whose meaning 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))
See Also
WM_NOTIFY
file: /Techref/os/win/api/win32/mac/src/mac00_15.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/12 13:31,
|
| ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://sxlist.com/techref/os/win/api/win32/mac/src/mac00_15.htm"> HANDLE_WM_NOTIFY</A> |
Did you find what you needed?
|
.
|