GetConsoleCommandHistoryA method

int GetConsoleCommandHistoryA(
  1. Pointer<Int8> Commands,
  2. int CommandBufferLength,
  3. Pointer<Int8> ExeName
)

Implementation

int GetConsoleCommandHistoryA(
  ffi.Pointer<ffi.Int8> Commands,
  int CommandBufferLength,
  ffi.Pointer<ffi.Int8> ExeName,
) {
  return (_GetConsoleCommandHistoryA ??= _dylib.lookupFunction<
      _c_GetConsoleCommandHistoryA,
      _dart_GetConsoleCommandHistoryA>('GetConsoleCommandHistoryA'))(
    Commands,
    CommandBufferLength,
    ExeName,
  );
}