Example #1
0
 public static extern bool GetCursorPos(out Win32Helper.POINT pt);
Example #2
0
 internal static extern bool GetMonitorInfo(System.IntPtr hMonitor, Win32Helper.MONITORINFO lpmi);
Example #3
0
 public RECT(Win32Helper.RECT rcSrc)
 {
     this.left = rcSrc.left;
     this.top = rcSrc.top;
     this.right = rcSrc.right;
     this.bottom = rcSrc.bottom;
 }