ReadConsoleOutputA method

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

Implementation

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