SetWindowTextA method
Implementation
int SetWindowTextA(
ffi.Pointer<HWND__> hWnd,
ffi.Pointer<ffi.Int8> lpString,
) {
return (_SetWindowTextA ??=
_dylib.lookupFunction<_c_SetWindowTextA, _dart_SetWindowTextA>(
'SetWindowTextA'))(
hWnd,
lpString,
);
}