IPWorks Encrypt 2020 C++ Edition

Questions / Feedback?

Progress Event

Fired as progress is made.

Syntax

ANSI (Cross Platform)
virtual int FireProgress(RijndaelProgressEventParams *e);
typedef struct {
int64 BytesProcessed;
int PercentProcessed; int reserved; } RijndaelProgressEventParams; Unicode (Windows) virtual INT FireProgress(RijndaelProgressEventParams *e);
typedef struct {
LONG64 BytesProcessed;
INT PercentProcessed; INT reserved; } RijndaelProgressEventParams;
- (void)onProgress:(long long)bytesProcessed :(int)percentProcessed;
#define EID_RIJNDAEL_PROGRESS 2

virtual INT IPWORKSENCRYPT_CALL FireProgress(LONG64 &lBytesProcessed, INT &iPercentProcessed);

Remarks

This event is fired automatically as data is processed by the class.

The PercentProcessed parameter indicates the current status of the operation.

The BytesProcessed parameter holds the total number of bytes processed so far.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Encrypt 2020 C++ Edition - Version 20.0 [Build 8155]