From 0533a6be239b983f4ff874e0502a17f88517a9a8 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Mon, 8 Nov 2010 21:41:44 +0000 Subject: [PATCH] Minor spelling fix. Use POINT structure instead of System.Drawing.Point. --- Source/OpenTK/Platform/Windows/API.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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