.
C# Definition:
private delegate IntPtr LowLevelMouseProc(int code, WindowsMessages wParam, [In] MSLLHOOKSTRUCT lParam);
VB Definition:
Private Delegate Function LowLevelMouseProc(ByVal code As Integer, ByVal wParam As WindowsMessages, <[In]> ByVal lParam As MSLLHOOKSTRUCT) As IntPtr
User-Defined Types:
MSLLHOOKSTRUCT
WindowsMessages
Notes:
If the hook returns >0 then no subsequent processing occurs.
The MSLLHOOKSTRUCT structure contains information about a low-level mouse input event.
4/1/2011 5:52:14 AM - -217.119.210.6
C# and VB enums of many of the Windows Messages.
1/14/2017 1:02:06 PM - -62.117.213.16
Installs a hook to monitor certain types of events.
3/29/2016 12:24:55 PM - -67.166.68.151
