BackupEventLogA method

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

Implementation

int BackupEventLogA(
  ffi.Pointer<ffi.Void> hEventLog,
  ffi.Pointer<ffi.Int8> lpBackupFileName,
) {
  return (_BackupEventLogA ??=
      _dylib.lookupFunction<_c_BackupEventLogA, _dart_BackupEventLogA>(
          'BackupEventLogA'))(
    hEventLog,
    lpBackupFileName,
  );
}