MSG (Structures)
Last changed: Drarig29-93.23.131.77

.
Summary
The MSG structure contains message information from a thread's message queue.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct MSG
{
    public IntPtr hwnd;
    public uint message;
    public IntPtr wParam;
    public IntPtr lParam;
    public uint time;
    public POINT pt;
}

User-Defined Field Types:

None.

Notes:

None.

Documentation
MSG on MSDN