diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-06 17:55:04 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-06 17:55:04 +0200 |
commit | 8e3c5a9ca3732a41fbb8581b13c49acd699820da (patch) | |
tree | f75be0a65a7ab52fd3c35d240d0cc0446d3e883d /runtime/vmprg.h | |
parent | 010060289a729dd930ac04b72237f0ca0db9ea1d (diff) | |
download | rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.tar.gz rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.tar.xz rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.zip |
improved internal handling of RainerScript functions
- building the necessary plumbing to support more functions with
decent runtime performance. This is also necessary towards the
long-term goal of loadable library modules.
- added new RainerScript function "tolower"
Diffstat (limited to 'runtime/vmprg.h')
-rw-r--r-- | runtime/vmprg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/vmprg.h b/runtime/vmprg.h index c1042f7d..66f03913 100644 --- a/runtime/vmprg.h +++ b/runtime/vmprg.h @@ -57,8 +57,10 @@ BEGINinterface(vmprg) /* name must also be changed in ENDinterface macro! */ rsRetVal (*AddOperation)(vmprg_t *pThis, vmop_t *pOp); rsRetVal (*AddVarOperation)(vmprg_t *pThis, opcode_t opcode, var_t *pVar); rsRetVal (*Obj2Str)(vmprg_t *pThis, cstr_t *pstr); + /* v2 (4.1.7) */ + rsRetVal (*AddCallOperation)(vmprg_t *pThis, cstr_t *pVar); /* added 2009-04-06 */ ENDinterface(vmprg) -#define vmprgCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ +#define vmprgCURR_IF_VERSION 2 /* increment whenever you change the interface structure! */ /* prototypes */ |