diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-22 12:36:14 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-22 12:36:14 +0000 |
commit | 44ac484dd18867163735c54d052e57d52142edaa (patch) | |
tree | d006fbda03e52b2cdb8e81b0cb7385bcc7ad7a00 /var.h | |
parent | c0d0e0643dabbbb8a7fce0a52af5a35831403aee (diff) | |
download | rsyslog-44ac484dd18867163735c54d052e57d52142edaa.tar.gz rsyslog-44ac484dd18867163735c54d052e57d52142edaa.tar.xz rsyslog-44ac484dd18867163735c54d052e57d52142edaa.zip |
worked a bit on type conversion (specified the interface)
Diffstat (limited to 'var.h')
-rw-r--r-- | var.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -61,6 +61,7 @@ BEGINinterface(var) /* name must also be changed in ENDinterface macro! */ rsRetVal (*Destruct)(var_t **ppThis); rsRetVal (*SetInt64)(var_t *pThis, int64 iVal); rsRetVal (*SetString)(var_t *pThis, cstr_t *pCStr); + rsRetVal (*ConvForOperation)(var_t *pThis, var_t *pOther); ENDinterface(var) #define varCURR_IF_VERSION 1 /* increment whenever you change the interface above! */ |