SecureBlackbox 2020 C++ Edition

Questions / Feedback?

MultipleFilesFound Event

Fires if the PGP message is recognized to contain multiple files.

Syntax

ANSI (Cross Platform)
virtual int FireMultipleFilesFound(PGPReaderMultipleFilesFoundEventParams *e);
typedef struct {
const char *TarFilename;
int Proceed; int reserved; } PGPReaderMultipleFilesFoundEventParams; Unicode (Windows) virtual INT FireMultipleFilesFound(PGPReaderMultipleFilesFoundEventParams *e);
typedef struct {
LPCWSTR TarFilename;
BOOL Proceed; INT reserved; } PGPReaderMultipleFilesFoundEventParams;
- (void)onMultipleFilesFound:(NSString*)tarFilename :(int*)proceed;
#define EID_PGPREADER_MULTIPLEFILESFOUND 6

virtual INT SECUREBLACKBOX_CALL FireMultipleFilesFound(LPSTR &lpszTarFilename, BOOL &bProceed);

Remarks

The class fires this event to report that there is more than one file in the PGP message.

The TarFilename specifies the name of the TAR file containing the files. Tune up Proceed to go ahead or stop the processing.

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