GetWindowTextA method
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,
);
}