CWPSTRUCT (Structures)
Last changed: -123.252.211.88

.
Summary
Structure returned from a WH_CALLWNDPROC windows hook

C# Definition:

    [StructLayout(LayoutKind.Sequential)]
    public struct CWPSTRUCT
    {
        public IntPtr lparam;
        public IntPtr wparam;
        public int message;
        public IntPtr hwnd;
    }

VB Definition:

   <System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)> _
    Public Structure CWPSTRUCT
        Public lParam As IntPtr
        Public wParam As IntPtr
        Public message As Integer
        Public hWnd As IntPtr
    End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
CWPSTRUCT on MSDN