LoadCursor (user32)
Last changed: 185.15.81.195

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr LoadCursor(IntPtr hInstance, string lpCursorName);

User-Defined Types:

IDC_

Notes:

Tips & Tricks:

If you specify the hInstance as IntPtr.Zero, then you can specify one of the constants in IDC_ as the CursorName to utilize system defined cursors.

Sample Code:

    IntPtr handle = LoadCursor(IntPtr.Zero, IDC_Arrow);

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
LoadCursor on MSDN