diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-10-19 12:23:42 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-10-19 12:23:42 +0000 |
commit | bc6d3e81e83de83871b03856d55eb71c6a5a0a4c (patch) | |
tree | 86414482a4fa2f44a5c4b92ff1bda7757987d29d /rsyslog.h | |
parent | 8dc836cf04eaf061fb4ee31bcc771e2297f7630b (diff) | |
download | rsyslog-bc6d3e81e83de83871b03856d55eb71c6a5a0a4c.tar.gz rsyslog-bc6d3e81e83de83871b03856d55eb71c6a5a0a4c.tar.bz2 rsyslog-bc6d3e81e83de83871b03856d55eb71c6a5a0a4c.zip |
made "!progname" fully BSD-compliant; added property "programname"
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -38,6 +38,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_NO_DIGIT = -3005, /**< an digit was expected, but none found (mostly parsing) */ RS_RET_NO_MORE_DATA = -3006, /**< insufficient data, e.g. end of string during parsing */ RS_RET_INVALID_IP = -3007, /**< invalid ip found where valid was expected */ + RS_RET_OBJ_CREATION_FAILED = - 3008, /**< the creation of an object failed (no details available) */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |