UpdateLayeredWindowIndirect method

int UpdateLayeredWindowIndirect(
  1. Pointer<HWND__> hWnd,
  2. Pointer<PUPDATELAYEREDWINDOWINFO> pULWInfo
)

Implementation

int UpdateLayeredWindowIndirect(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<PUPDATELAYEREDWINDOWINFO> pULWInfo,
) {
  return (_UpdateLayeredWindowIndirect ??= _dylib.lookupFunction<
      _c_UpdateLayeredWindowIndirect,
      _dart_UpdateLayeredWindowIndirect>('UpdateLayeredWindowIndirect'))(
    hWnd,
    pULWInfo,
  );
}