The SysMsgProc hook procedure is a library-defined callback function the system calls after an input event occurs in a dialog box, message box, menu, or scroll bar, but before the message generated by the input event is processed. The hook procedure can monitor messages for any dialog box, message box, menu, or scroll bar in the system.
LRESULT CALLBACK SysMsgProc(
|
int nCode, |
// message flag |
|
WPARAM wParam, |
// undefined |
|
LPARAM lParam |
// address of structure with message data |
|
); |
|
Value |
Meaning |
|
MSGF_DIALOGBOX |
The input event occurred in a message box or dialog box. |
|
MSGF_MENU |
The input event occurred in a menu. |
|
MSGF_SCROLLBAR |
The input event occurred in a scroll bar. |
|
MSGF_NEXTWINDOW |
The input event occurred as a result of the user’s pressing the ALT+TAB key combination to activate a different window. |
If nCode is less than zero, the hook procedure must pass the message to
the CallNextHookEx function without
further processing and should return the value returned by CallNextHookEx.
If the hook procedure processes the message, the return value must be nonzero. Otherwise, it must be zero.
An application installs the hook procedure by specifying the WH_SYSMSGFILTER hook type and the address of the hook procedure in a call to the SetWindowsHookEx function.
SysMsgProc is a placeholder for the library-defined function name.
CallNextHookEx, MSG, SetWindowsHookEx
See also:
| file: /Techref/os/win/api/win32/func/src/f87_16.htm, 4KB, , updated: 2000/4/7 11:19, local time: 2012/2/9 23:15,
38.107.179.233:LOG IN |
| ©2012 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://www.piclist.com/techref/os/win/api/win32/func/src/f87_16.htm"> SysMsgProc</A> |
| Did you find what you needed? |
|
Ashley Roll has put together a really nice little unit here. Leave off the MAX232 and keep these handy for the few times you need true RS232! |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.