Example #1
0
        internal static UnsafeNativeMethods.Win32Point GetCursorPosition()
        {
            UnsafeNativeMethods.Win32Point pt = new UnsafeNativeMethods.Win32Point();

            UnsafeNativeMethods.GetCursorPos(ref pt);
            return(pt);
        }
Example #2
0
 internal static extern bool GetCursorPos(ref UnsafeNativeMethods.Win32Point pt);