diff options
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -59,10 +59,16 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_DISABLE_ACTION = -2006, /**< action requests that it be disabled */ RS_RET_SUSPENDED = -2007, /**< something was suspended, not neccesarily an error */ RS_RET_RQD_TPLOPT_MISSING = -2008,/**< a required template option is missing */ + RS_RET_INVALID_VALUE = -2009,/**< some value is invalid (e.g. user-supplied data) */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ +/* some helpful macros to work with srRetVals. + * Be sure to call the to-be-returned variable always "iRet" and + * the function finalizer always "finalize_it". + */ +#define CHKiRet(code) if((iRet = code) != RS_RET_OK) goto finalize_it /** Object ID. These are for internal checking. Each * object is assigned a specific ID. This is contained in |