GetPropW method

Pointer<Void> GetPropW(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Uint16> lpString
)

Implementation

ffi.Pointer<ffi.Void> GetPropW(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<ffi.Uint16> lpString,
) {
  return (_GetPropW ??=
      _dylib.lookupFunction<_c_GetPropW, _dart_GetPropW>('GetPropW'))(
    hWnd,
    lpString,
  );
}