SetWindowTextA method

int SetWindowTextA(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Int8> lpString
)

Implementation

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