UpdateLayeredWindow method

int UpdateLayeredWindow(
  1. Pointer<HWND__> hWnd,
  2. Pointer<HDC__> hdcDst,
  3. Pointer<POINT> pptDst,
  4. Pointer<SIZE> psize,
  5. Pointer<HDC__> hdcSrc,
  6. Pointer<POINT> pptSrc,
  7. int crKey,
  8. Pointer<BLENDFUNCTION> pblend,
  9. int dwFlags,
)

Implementation

int UpdateLayeredWindow(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<HDC__> hdcDst,
  ffi.Pointer<POINT> pptDst,
  ffi.Pointer<SIZE> psize,
  ffi.Pointer<HDC__> hdcSrc,
  ffi.Pointer<POINT> pptSrc,
  int crKey,
  ffi.Pointer<BLENDFUNCTION> pblend,
  int dwFlags,
) {
  return _UpdateLayeredWindow(
    hWnd,
    hdcDst,
    pptDst,
    psize,
    hdcSrc,
    pptSrc,
    crKey,
    pblend,
    dwFlags,
  );
}