GetCursor function
Applies to: desktop apps only
Retrieves a handle to the current cursor.
To get information on the global cursor, even if it is not owned by the current thread, use GetCursorInfo.
Syntax
HCURSOR WINAPI GetCursor(void);
Parameters
This function has no parameters.
Return value
Type: HCURSOR
The return value is the handle to the current cursor. If there is no cursor, the return value is NULL.
Requirements
|
Minimum supported client | Windows 2000 Professional |
|---|---|
|
Minimum supported server | Windows 2000 Server |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Reference
- GetCursorInfo
- SetCursor
- Conceptual
- Cursors
Send comments about this topic to Microsoft
Build date: 2/3/2012
C# syntax
[DllImport("user32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern IntPtr GetCursor();
- 4/26/2009
- dmex