ReadConsoleOutputCharacterW method

int ReadConsoleOutputCharacterW(
  1. Pointer<Void> hConsoleOutput,
  2. Pointer<Uint16> lpCharacter,
  3. int nLength,
  4. COORD dwReadCoord,
  5. Pointer<Uint64> lpNumberOfCharsRead,
)

Implementation

int ReadConsoleOutputCharacterW(
  ffi.Pointer<ffi.Void> hConsoleOutput,
  ffi.Pointer<ffi.Uint16> lpCharacter,
  int nLength,
  COORD dwReadCoord,
  ffi.Pointer<ffi.Uint64> lpNumberOfCharsRead,
) {
  return _ReadConsoleOutputCharacterW(
    hConsoleOutput,
    lpCharacter,
    nLength,
    dwReadCoord,
    lpNumberOfCharsRead,
  );
}