From 3e8ba29e5cf041b9056b7a14f0000a9c1557fed0 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 19 Sep 2005 10:29:24 +0000 Subject: added parsing of property-filter (but not complete property selector line yet) --- rsyslog.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'rsyslog.h') diff --git a/rsyslog.h b/rsyslog.h index 95138e79..ccd5db89 100644 --- a/rsyslog.h +++ b/rsyslog.h @@ -31,7 +31,11 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth { RS_RET_OUT_OF_MEMORY = -6, /**< memory allocation failed */ RS_RET_PROVIDED_BUFFER_TOO_SMALL = -50,/**< the caller provided a buffer, but the called function sees the size of this buffer is too small - operation not carried out */ - RS_TRUNCAT_TOO_LARGE = -3000, /**< truncation operation where too many chars should be truncated */ + RS_RET_ERR = -3000, /**< generic failure */ + RS_TRUNCAT_TOO_LARGE = -3001, /**< truncation operation where too many chars should be truncated */ + RS_RET_FOUND_AT_STRING_END = -3002, /**< some value found, but at the last pos of string */ + RS_RET_NOT_FOUND = -3003, /**< some requested value not found */ + RS_RET_MISSING_TRAIL_QUOTE = -3004, /**< an expected trailing quote is missing */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ -- cgit