ForegroundIdleProc
The ForegroundIdleProc
hook procedure is an application-defined callback function the system calls
whenever the 32-bit foreground thread is about to become idle.
DWORD ForegroundIdleProc(
int code, |
// hook
code |
DWORD wParam, |
// not used |
LONG lParam |
// not used |
); |
|
Parameters
code
Specifies
whether the hook procedure must process the message. If code is
HC_ACTION, the hook procedure must process the message. If code is less
than zero, the hook procedure must pass the message to the CallNextHookEx
wParam
Not used.
lParam
Not used.
Remarks
An
application installs this hook procedure by specifying the WH_FOREGROUNDIDLE
hook type and the pointer to the hook procedure in a call to the SetWindowsHookEx
function.
ForegroundIdleProc is a placeholder for the application-defined function
name.
This is a
thread-specific hook.
See Also