SecureBlackbox 2020 C++ Edition

Questions / Feedback?

Progress Event

Reports the progress of the data transfer operation.

Syntax

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

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]