summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-31 12:01:58 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-31 12:01:58 +0000
commit8fd4a3e82d354fa3b8efbd8c99015ae56db69fb5 (patch)
tree8958d01c4081f16f6fecce0262f9b0ac759ba52e /rsyslog.h
parent45d05a7a5b73de744991e9b6a813d7cc2911d07a (diff)
downloadrsyslog-8fd4a3e82d354fa3b8efbd8c99015ae56db69fb5.tar.gz
rsyslog-8fd4a3e82d354fa3b8efbd8c99015ae56db69fb5.tar.xz
rsyslog-8fd4a3e82d354fa3b8efbd8c99015ae56db69fb5.zip
added some more functions to linkedList class
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 7d154112..525db91f 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -65,6 +65,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
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_IS_EQUAL = -2015, /**< outcome of a compare is equal */
+ RS_RET_IS_NOT_EQUAL = -2016, /**< outcome of a compare is not equal */
RS_RET_OK = 0 /**< operation successful */
};
typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */