OpenTK.Platform.Windows.WinRawMouse.WinRawMouse C# (CSharp) Method

WinRawMouse() public method

public WinRawMouse ( IntPtr window ) : System
window System.IntPtr
return System
        public WinRawMouse(IntPtr window)
        {
            Debug.WriteLine("Using WinRawMouse.");
            Debug.Indent();

            if (window == IntPtr.Zero)
                throw new ArgumentNullException("window");

            Window = window;
            RefreshDevices();

            Debug.Unindent();
        }