GetMouseMovePointsEx (user32)
Last changed: -131.107.71.227

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern int GetMouseMovePointsEx(uint cbSize, [In] ref MOUSEMOVEPOINT
   lppt, [Out] MOUSEMOVEPOINT [] lpptBuf, int nBufPoints, uint resolution);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] // For GetMouseMovePointsEx
    public struct MOUSEMOVEPOINT {
        public int x ;            //Specifies the x-coordinate of the mouse
        public int y ;            //Specifies the x-coordinate of the mouse
        public int time ;             //Specifies the time stamp of the mouse coordinate
        public IntPtr dwExtraInfo;        //Specifies extra information associated with this coordinate.
    }

Alternative Managed API:

Do you know one? Please contribute it!

Documentation