SetWindowTextW method

int SetWindowTextW(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Uint16> lpString
)

Implementation

int SetWindowTextW(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<ffi.Uint16> lpString,
) {
  return (_SetWindowTextW ??=
      _dylib.lookupFunction<_c_SetWindowTextW, _dart_SetWindowTextW>(
          'SetWindowTextW'))(
    hWnd,
    lpString,
  );
}