|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user-defined
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| HOOKPROC
|
|
|
JournalRecordProc
The JournalRecordProc hook procedure is a callback function that records messages the system
removes from the system message queue. Later, an application can use a JournalPlaybackProc hook procedure to play back the messages.
LRESULT CALLBACK JournalRecordProc(
int code,
| // hook code
| WPARAM wParam,
| // undefined
| LPARAM lParam
| // address of message being processed
| );
|
|
Parameters
code
Specifies how to process the message. This parameter can be one of the
following values:
Value
| Meaning
| HC_ACTION
| The lParam parameter points to an EVENTMSG structure containing information about a message removed from the system
queue. The hook procedure must record the contents of the structure by copying them
to a buffer or file.
| HC_SYSMODALOFF
| A system-modal dialog box has been destroyed. The hook procedure must resume
recording.
| HC_SYSMODALON
| A system-modal dialog box is being displayed. Until the dialog box is
destroyed, the hook procedure must stop recording.
|
If code 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.
wParam
Specifies a NULL value.
lParam
Points to an EVENTMSG structure that contains the message to be recorded.
Return Values
The return value is ignored.
Remarks
A JournalRecordProc hook procedure must copy but not modify the messages. After the hook
procedure returns control to the system, the message continues to be processed.
An application installs a JournalRecordProc hook procedure by specifying the WH_JOURNALRECORD hook type and the address of the hook procedure in a call to the SetWindowsHookEx function.
A Win32 JournalRecordProc hook procedure does not need to live in a dynamic-link library. A Win32 JournalRecordProc hook procedure can live in the application itself.
Unlike most other global hook procedures, the JournalRecordProc and JournalPlaybackProc hook procedures are always called in the context of the thread that set the
hook.
An application that has installed a JournalRecordProc hook procedure should watch for the VK_CANCEL virtual keycode (which is
implemented as the CTRL+BREAK key combination on most keyboards). This virtual keycode should be
interpreted by the application as a signal that the user wishes to stop journal
recording. The application should respond by ending the recording sequence and removing
the JournalRecordProc hook procedure. Removal is important. It prevents a journaling application
from locking up the system by hanging inside a hook procedure.
This role as a signal to stop journal recording means that a CTRL+BREAK key combination cannot itself be recorded. Since the CTRL+C key combination has no such role as a journaling signal, it can be recorded.
There are two other key combinations that cannot be recorded: CTRL+ESC and CTRL+ALT+DEL. Those two key combinations cause the system to stop all journaling
activities (record or playback), remove all journaling hooks, and post a WM_CANCELJOURNAL message to the journaling application.
JournalRecordProc is a placeholder for an application-defined or library-defined function name.
See Also
CallNextHookEx, EVENTMSG, JournalPlaybackProc, SetWindowsHookEx, WM_CANCELJOURNAL
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|