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(
    hWnd,
    lpString,
  );
}