ReadConsoleOutputW method

int ReadConsoleOutputW(
  1. Pointer<Void> hConsoleOutput,
  2. Pointer<CHAR_INFO> lpBuffer,
  3. COORD dwBufferSize,
  4. COORD dwBufferCoord,
  5. Pointer<SMALL_RECT> lpReadRegion,
)

Implementation

int ReadConsoleOutputW(
  ffi.Pointer<ffi.Void> hConsoleOutput,
  ffi.Pointer<CHAR_INFO> lpBuffer,
  COORD dwBufferSize,
  COORD dwBufferCoord,
  ffi.Pointer<SMALL_RECT> lpReadRegion,
) {
  return _ReadConsoleOutputW(
    hConsoleOutput,
    lpBuffer,
    dwBufferSize,
    dwBufferCoord,
    lpReadRegion,
  );
}