SetLayeredWindowAttributes method

int SetLayeredWindowAttributes(
  1. Pointer<HWND__> hwnd,
  2. int crKey,
  3. int bAlpha,
  4. int dwFlags,
)

Implementation

int SetLayeredWindowAttributes(
  ffi.Pointer<HWND__> hwnd,
  int crKey,
  int bAlpha,
  int dwFlags,
) {
  return (_SetLayeredWindowAttributes ??= _dylib.lookupFunction<
      _c_SetLayeredWindowAttributes,
      _dart_SetLayeredWindowAttributes>('SetLayeredWindowAttributes'))(
    hwnd,
    crKey,
    bAlpha,
    dwFlags,
  );
}