System.Windows.Forms.XplatUIX11.XQueryBestCursor C# (CSharp) Method

XQueryBestCursor() static private method

static private XQueryBestCursor ( IntPtr display, IntPtr drawable, int width, int height, int &best_width, int &best_height ) : int
display IntPtr
drawable IntPtr
width int
height int
best_width int
best_height int
return int
		internal static int XQueryBestCursor(IntPtr display, IntPtr drawable, int width, int height, out int best_width, out int best_height) {
			DebugHelper.TraceWriteLine ("XQueryBestCursor");
			return _XQueryBestCursor(display, drawable, width, height, out best_width, out best_height);
		}
XplatUIX11