GetConsoleCommandHistoryW method

int GetConsoleCommandHistoryW(
  1. Pointer<Uint16> Commands,
  2. int CommandBufferLength,
  3. Pointer<Uint16> ExeName
)

Implementation

int GetConsoleCommandHistoryW(
  ffi.Pointer<ffi.Uint16> Commands,
  int CommandBufferLength,
  ffi.Pointer<ffi.Uint16> ExeName,
) {
  return (_GetConsoleCommandHistoryW ??= _dylib.lookupFunction<
      _c_GetConsoleCommandHistoryW,
      _dart_GetConsoleCommandHistoryW>('GetConsoleCommandHistoryW'))(
    Commands,
    CommandBufferLength,
    ExeName,
  );
}