LoadCursor (user32)
Last changed: CodeMajster-209.252.71.161

.
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