mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-23 03:18:34 +00:00
GetCursor function.
This commit is contained in:
parent
acf47f1ff4
commit
4fb7a2d5c2
|
@ -1138,6 +1138,16 @@ namespace OpenTK.Platform.Windows
|
||||||
[DllImport("user32.dll")]
|
[DllImport("user32.dll")]
|
||||||
public static extern HCURSOR SetCursor(HCURSOR hCursor);
|
public static extern HCURSOR SetCursor(HCURSOR hCursor);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves a handle to the current cursor.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>
|
||||||
|
/// The return value is the handle to the current cursor. If there is
|
||||||
|
/// no cursor, the return value is null.
|
||||||
|
/// </returns>
|
||||||
|
[DllImport("user32.dll")]
|
||||||
|
public static extern HCURSOR GetCursor();
|
||||||
|
|
||||||
#region Async input
|
#region Async input
|
||||||
|
|
||||||
#region GetCursorPos
|
#region GetCursorPos
|
||||||
|
|
Loading…
Reference in a new issue