AOError_t

Updated: April 19, 2023

Error information

Synopsis:

#include <aoi.h>

typedef struct AOError
{
    int64_t error;
    int64_t extra;
    char    type_str[16];
    char    err_str[256];
} AOError_t;

Description:

The AOError_t structure describes an error that occurred in an addon interface function. It contains the following members:
error
The error number according to the type_str field.
extra
Extra information. The exact contents depend on the protocol or library reporting the error type (and hence, the value in type_str).
type_str
A short string describing the protocol or library reporting the error type (e.g., errno, http, ftp, rtsp, libaoi).
err_str
A string describing the error.

Classification:

QNX Neutrino