InternalGetWindowText method
Implementation
int InternalGetWindowText(
ffi.Pointer<HWND__> hWnd,
ffi.Pointer<ffi.Uint16> pString,
int cchMaxCount,
) {
return (_InternalGetWindowText ??= _dylib.lookupFunction<
_c_InternalGetWindowText,
_dart_InternalGetWindowText>('InternalGetWindowText'))(
hWnd,
pString,
cchMaxCount,
);
}