GetCursorInfo (user32)
Last changed: -76.22.12.134

.
Summary

C# Signature:

[StructLayout(LayoutKind.Sequential)]

struct POINT

{

    public Int32 x;
    public Int32 y;

}

[StructLayout(LayoutKind.Sequential)]

struct CURSORINFO

{

    public Int32 cbSize; // cbSize = sizeof(CURSORINFO);
    public Int32 flags;
    public IntPtr hCursor;
    public POINT ptScreenPos;

}

[DllImport("user32.dll")]

static extern bool GetCursorInfo(out CURSORINFO pci);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation