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