GetConsoleCommandHistoryA method
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,
);
}