Go to the documentation of this file.
39 #define AS_ERROR_MESSAGE_MAX_SIZE 1024
46 #define AS_ERROR_MESSAGE_MAX_LEN (AS_ERROR_MESSAGE_MAX_SIZE - 1)
96 typedef struct as_error_s {
134 #define as_error_update(__err, __code, __fmt, ...) \
135 as_error_setallv( __err, __code, __func__, __FILE__, __LINE__, __fmt, ##__VA_ARGS__ );
142 #define as_error_set_message(__err, __code, __msg) \
143 as_error_setall( __err, __code, __msg, __func__, __FILE__, __LINE__ );