summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-31 10:49:53 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-31 10:49:53 +0000
commit45d05a7a5b73de744991e9b6a813d7cc2911d07a (patch)
tree3d48f6ae6d930e303c3e85ac824a2c2bbec8d394 /rsyslog.h
parentcc768428f3226e3bc331c203cc4b0ab2441e4f09 (diff)
downloadrsyslog-45d05a7a5b73de744991e9b6a813d7cc2911d07a.tar.gz
rsyslog-45d05a7a5b73de744991e9b6a813d7cc2911d07a.tar.xz
rsyslog-45d05a7a5b73de744991e9b6a813d7cc2911d07a.zip
added a generic linked list object (files linkedlist.h/c)
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 60d003b2..7d154112 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -64,6 +64,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_INVALID_CMD = -2011,/**< invalid command */
RS_RET_VAL_OUT_OF_RANGE = -2012, /**< value out of range */
RS_RET_FOPEN_FAILURE = -2013, /**< failure during fopen, for example file not found - see errno */
+ RS_RET_END_OF_LINKEDLIST = -2014, /**< end of linked list, not an error, but a status */
RS_RET_OK = 0 /**< operation successful */
};
typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */