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(
    hWnd,
    pString,
    cchMaxCount,
  );
}