Example #1
0
			public MouseHookEventArgs(IntPtr handle, WindowsMessage windowsMessage, POINT point)
			{
				Handle = handle;
				WindowsMessage = windowsMessage;
				X = point.x;
				Y = point.y;
			}
Example #2
0
 public static extern IntPtr WindowFromPoint(POINT Point);
Example #3
0
		public static extern int UpdateLayeredWindow(IntPtr hWnd, IntPtr hdcDst,
			ref POINT pptDst, ref Size psize, IntPtr hdcSrc, ref POINT pptSrc,
			int crKey, ref BLENDFUNCTION pblend, int dwFlags);