summaryrefslogtreecommitdiffstats
path: root/obj-types.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-20 15:27:19 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-20 15:27:19 +0000
commit897a6853118de669be90a451a7319a219cde6feb (patch)
treeb4e3d46af5a681db4f93f7e9d7c80132a981d06d /obj-types.h
parent3ecce195ac8e50115a44c6d416fd42bbfa03aafe (diff)
downloadrsyslog-897a6853118de669be90a451a7319a219cde6feb.tar.gz
rsyslog-897a6853118de669be90a451a7319a219cde6feb.tar.xz
rsyslog-897a6853118de669be90a451a7319a219cde6feb.zip
added vmop class (stage for expression execution)
Diffstat (limited to 'obj-types.h')
-rw-r--r--obj-types.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/obj-types.h b/obj-types.h
index 831dd897..a473060d 100644
--- a/obj-types.h
+++ b/obj-types.h
@@ -42,9 +42,13 @@ typedef enum { /* IDs of known object "types/classes" */
OBJctok = 6,
OBJctok_token = 7,
OBJvar = 8,
- OBJexpr = 9 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
+ OBJvmop = 9,
+ OBJvmprg = 10,
+ OBJvm = 11,
+ OBJvmstk = 12,
+ OBJexpr = 13 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
} objID_t;
-#define OBJ_NUM_IDS 10
+#define OBJ_NUM_IDS 14
typedef enum { /* IDs of base methods supported by all objects - used for jump table, so
* they must start at zero and be incremented. -- rgerahrds, 2008-01-04