GetWindowTextA method

int GetWindowTextA(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Int8> lpString,
  3. int nMaxCount
)

Implementation

int GetWindowTextA(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<ffi.Int8> lpString,
  int nMaxCount,
) {
  return (_GetWindowTextA ??=
      _dylib.lookupFunction<_c_GetWindowTextA, _dart_GetWindowTextA>(
          'GetWindowTextA'))(
    hWnd,
    lpString,
    nMaxCount,
  );
}