From 1cc790fae01e4392d4cf96820f6402528f611c44 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 21 Feb 2008 11:03:34 +0000 Subject: first steps in implementing object interfaces (stage work for later dynamic class loading) --- rsyslog.h | 1 + 1 file changed, 1 insertion(+) (limited to 'rsyslog.h') diff --git a/rsyslog.h b/rsyslog.h index 655cf5d9..8b8ada8d 100644 --- a/rsyslog.h +++ b/rsyslog.h @@ -127,6 +127,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_SYNTAX_ERROR = -2051, /**< syntax error, eg. during parsing */ RS_RET_INVALID_OCTAL_DIGIT = -2052, /**< invalid octal digit during parsing */ RS_RET_INVALID_HEX_DIGIT = -2053, /**< invalid hex digit during parsing */ + RS_RET_INTERFACE_NOT_SUPPORTED = -2054, /**< interface not supported */ RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */ RS_RET_TERMINATE_NOW = 2, /**< operation successful, function is requested to terminate (mostly used with threads) */ RS_RET_NO_RUN = 3, /**< operation successful, but function does not like to be executed */ -- cgit