Error Event

Fires if an unhandled error occurs during an event.

Syntax

ANSI (Cross Platform)
virtual int FireError(CBFSErrorEventParams *e);
typedef struct {
int ErrorCode;
const char *Description; int reserved; } CBFSErrorEventParams; Unicode (Windows) virtual INT FireError(CBFSErrorEventParams *e);
typedef struct {
INT ErrorCode;
LPCWSTR Description; INT reserved; } CBFSErrorEventParams;
#define EID_CBFS_ERROR 16

virtual INT CBFSCONNECT_CALL FireError(INT &iErrorCode, LPSTR &lpszDescription);

Remarks

This event fires if an unhandled error occurs during another event. Developers can use this information to help track down unhandled errors in an application's event handlers.

Copyright (c) 2022 Callback Technologies, Inc. - All rights reserved.
CBFS Connect 2020 C++ Edition - Version 20.0 [Build 8348]