diff --git a/Source/OpenTK/Platform/Windows/API.cs b/Source/OpenTK/Platform/Windows/API.cs index 99dc7dac..96c3de9f 100644 --- a/Source/OpenTK/Platform/Windows/API.cs +++ b/Source/OpenTK/Platform/Windows/API.cs @@ -350,7 +350,7 @@ namespace OpenTK.Platform.Windows #region GetMessage /// - /// Low-level WINAPI function that retriives the next message in the queue. + /// Low-level WINAPI function that retrieves the next message in the queue. /// /// The pending message (if any) is stored here. /// Not used @@ -986,7 +986,7 @@ namespace OpenTK.Platform.Windows /// 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. /// [DllImport("user32.dll", SetLastError = true), SuppressUnmanagedCodeSecurity] - internal static extern BOOL GetCursorPos(ref Point point); + internal static extern BOOL GetCursorPos(ref POINT point); #endregion