SetConsoleWindowInfo method

int SetConsoleWindowInfo(
  1. Pointer<Void> hConsoleOutput,
  2. int bAbsolute,
  3. Pointer<SMALL_RECT> lpConsoleWindow
)

Implementation

int SetConsoleWindowInfo(
  ffi.Pointer<ffi.Void> hConsoleOutput,
  int bAbsolute,
  ffi.Pointer<SMALL_RECT> lpConsoleWindow,
) {
  return _SetConsoleWindowInfo(
    hConsoleOutput,
    bAbsolute,
    lpConsoleWindow,
  );
}