mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-25 04:16:52 +00:00
Minor spelling fix.
Use POINT structure instead of System.Drawing.Point.
This commit is contained in:
parent
1bacea0779
commit
6e00ecefa1
|
@ -350,7 +350,7 @@ namespace OpenTK.Platform.Windows
|
|||
#region GetMessage
|
||||
|
||||
/// <summary>
|
||||
/// Low-level WINAPI function that retriives the next message in the queue.
|
||||
/// Low-level WINAPI function that retrieves the next message in the queue.
|
||||
/// </summary>
|
||||
/// <param name="msg">The pending message (if any) is stored here.</param>
|
||||
/// <param name="windowHandle">Not used</param>
|
||||
|
@ -986,7 +986,7 @@ namespace OpenTK.Platform.Windows
|
|||
/// <para>The input desktop must be the current desktop when you call GetCursorPos. Call OpenInputDesktop to determine whether the current desktop is the input desktop. If it is not, call SetThreadDesktop with the HDESK returned by OpenInputDesktop to switch to that desktop.</para>
|
||||
/// </remarks>
|
||||
[DllImport("user32.dll", SetLastError = true), SuppressUnmanagedCodeSecurity]
|
||||
internal static extern BOOL GetCursorPos(ref Point point);
|
||||
internal static extern BOOL GetCursorPos(ref POINT point);
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
Loading…
Reference in a new issue