SecureBlackbox Lite 2020 Qt Edition

Questions / Feedback?

AfterCompressFile Event

Marks the completion of compression of a file.

Syntax

class ArchiveWriterAfterCompressFileEventParams {
public:
  const QString &Path();
  qint64 FileSize();
  int DataSource();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void AfterCompressFile(ArchiveWriterAfterCompressFileEventParams *e);
// Or, subclass ArchiveWriter and override this emitter function. virtual int FireAfterCompressFile(ArchiveWriterAfterCompressFileEventParams *e) {...}

Remarks

Subscribe to this event to get notified about the completion of compression of a file.

The Path parameter specifies the internal path to the entry inside the archive. The FileSize indicates the size of the file before compression, and the DataSource specifies the type of the source media.

fdsFile (0)The data was taken from a file.
fdsStream (1)The data was taken from a stream assigned to FileStream property.
fdsBuffer (2)The file data taken from the FileData buffer.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox Lite 2020 Qt Edition - Version 20.0 [Build 8166]