ClearEventLogA method

int ClearEventLogA(
  1. Pointer<Void> hEventLog,
  2. Pointer<Int8> lpBackupFileName
)

Implementation

int ClearEventLogA(
  ffi.Pointer<ffi.Void> hEventLog,
  ffi.Pointer<ffi.Int8> lpBackupFileName,
) {
  return (_ClearEventLogA ??=
      _dylib.lookupFunction<_c_ClearEventLogA, _dart_ClearEventLogA>(
          'ClearEventLogA'))(
    hEventLog,
    lpBackupFileName,
  );
}