SecureBlackbox 2020 C++ Edition

Questions / Feedback?

Progress Event

Reports the progress of the data transfer operation.

Syntax

ANSI (Cross Platform)
virtual int FireProgress(IMAPClientProgressEventParams *e);
typedef struct {
int64 Total;
int64 Current;
int Cancel; int reserved; } IMAPClientProgressEventParams; Unicode (Windows) virtual INT FireProgress(IMAPClientProgressEventParams *e);
typedef struct {
LONG64 Total;
LONG64 Current;
BOOL Cancel; INT reserved; } IMAPClientProgressEventParams;
- (void)onProgress:(long long)total :(long long)current :(int*)cancel;
#define EID_IMAPCLIENT_PROGRESS 10

virtual INT SECUREBLACKBOX_CALL FireProgress(LONG64 &lTotal, LONG64 &lCurrent, BOOL &bCancel);

Remarks

The class fires this event repeatedly to report the progress of the data transfer operation.

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