Exemplo 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);
Exemplo n.º 2
0
 private static extern bool ScreenToClient(IntPtr hWnd, ref Win32Types.Point pt);
Exemplo n.º 3
0
 private static extern bool ClientToScreen(IntPtr hWnd, ref Win32Types.Point pt);
Exemplo 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));
 }
Exemplo n.º 5
0
 public static bool ScreenToClientWrapper(IntPtr hWnd, ref Win32Types.Point pt)
 {
     return(ScreenToClient(hWnd, ref pt));
 }
Exemplo n.º 6
0
 public static bool ClientToScreenWrapper(IntPtr hWnd, ref Win32Types.Point pt)
 {
     return(ClientToScreen(hWnd, ref pt));
 }