summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-21 11:03:34 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-21 11:03:34 +0000
commit1cc790fae01e4392d4cf96820f6402528f611c44 (patch)
tree8d1c66f712cd53cf1b8a847dab97556c7c456a2d /rsyslog.h
parent3e22b60c70d04d5bce245103de7d2aafc43d3f05 (diff)
downloadrsyslog-1cc790fae01e4392d4cf96820f6402528f611c44.tar.gz
rsyslog-1cc790fae01e4392d4cf96820f6402528f611c44.tar.xz
rsyslog-1cc790fae01e4392d4cf96820f6402528f611c44.zip
first steps in implementing object interfaces (stage work for later dynamic
class loading)
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h1
1 files changed, 1 insertions, 0 deletions
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 */