[DllImport("user32.dll")]
static extern int GetMouseMovePointsEx(uint cbSize, [In] ref MOUSEMOVEPOINT
lppt, [Out] MOUSEMOVEPOINT [] lpptBuf, int nBufPoints, uint resolution);
None.
None.
Please add some!
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.
}
Do you know one? Please contribute it!