InternalGetWindowText method

int InternalGetWindowText(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Uint16> pString,
  3. int cchMaxCount
)

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