GetWindowTextW method
Implementation
int GetWindowTextW(
ffi.Pointer<HWND__> hWnd,
ffi.Pointer<ffi.Uint16> lpString,
int nMaxCount,
) {
return (_GetWindowTextW ??=
_dylib.lookupFunction<_c_GetWindowTextW, _dart_GetWindowTextW>(
'GetWindowTextW'))(
hWnd,
lpString,
nMaxCount,
);
}