GetLayeredWindowAttributes method

int GetLayeredWindowAttributes(
  1. Pointer<HWND__> hwnd,
  2. Pointer<Uint64> pcrKey,
  3. Pointer<Uint8> pbAlpha,
  4. Pointer<Uint64> pdwFlags,
)

Implementation

int GetLayeredWindowAttributes(
  ffi.Pointer<HWND__> hwnd,
  ffi.Pointer<ffi.Uint64> pcrKey,
  ffi.Pointer<ffi.Uint8> pbAlpha,
  ffi.Pointer<ffi.Uint64> pdwFlags,
) {
  return (_GetLayeredWindowAttributes ??= _dylib.lookupFunction<
      _c_GetLayeredWindowAttributes,
      _dart_GetLayeredWindowAttributes>('GetLayeredWindowAttributes'))(
    hwnd,
    pcrKey,
    pbAlpha,
    pdwFlags,
  );
}