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