Esempio n. 1
0
 private static extern int UpdateLayeredWindow(IntPtr hWnd, IntPtr hdcDst, ref Win32Types.Point pptDst,
                                               ref Win32Types.Size psize, IntPtr hdcSrc, ref Win32Types.Point pptSrc, uint crKey,
                                               ref Win32Types.BlendFunction pblend, uint dwFlags);
Esempio n. 2
0
 private static extern bool ScreenToClient(IntPtr hWnd, ref Win32Types.Point pt);
Esempio n. 3
0
 private static extern bool ClientToScreen(IntPtr hWnd, ref Win32Types.Point pt);
Esempio n. 4
0
 public static int UpdateLayeredWindowWrapper(IntPtr hWnd, IntPtr hdcDst, ref Win32Types.Point pptDst,
                                              ref Win32Types.Size psize, IntPtr hdcSrc, ref Win32Types.Point pptSrc, uint crKey,
                                              ref Win32Types.BlendFunction pblend, uint dwFlags)
 {
     return(UpdateLayeredWindow(hWnd, hdcDst, ref pptDst, ref psize, hdcSrc, ref pptSrc, crKey, ref pblend, dwFlags));
 }
Esempio n. 5
0
 public static bool ScreenToClientWrapper(IntPtr hWnd, ref Win32Types.Point pt)
 {
     return(ScreenToClient(hWnd, ref pt));
 }
Esempio n. 6
0
 public static bool ClientToScreenWrapper(IntPtr hWnd, ref Win32Types.Point pt)
 {
     return(ClientToScreen(hWnd, ref pt));
 }