|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
CWPRETSTRUCT
The CWPRETSTRUCT structure defines the message parameters passed to a WH_CALLWNDPROCRET hook
procedure.
typedef struct tagCWPRETSTRUCT { // cwprs
LRESULT lResult;
LPARAM lParam;
WPARAM wParam;
DWORD message;
HWND hwnd;
} CWPRETSTRUCT;
Members
lResult
Specifies the return value of the window procedure that processed the message
specified by the message value.
lParam
Specifies additional information about the message. The exact meaning depends
on the message value.
wParam
Specifies additional information about the message. The exact meaning depends
on the message value.
message
Specifies the message.
hwnd
Identifies the window that processed the message specified by the message value.
See Also
CallWndRetProc, SetWindowsHook, SetWindowsHookEx
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|