summaryrefslogtreecommitdiffstats
path: root/vmstk.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-21 17:55:06 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-21 17:55:06 +0000
commit1880ff0fc3f2048f3753e0d65ffbccf0ae35e5ce (patch)
tree347eb70c727765f731b2cf0e61d88f6f30a1b4df /vmstk.h
parentac69017509862ba460bd46eaebff290fbe0e2988 (diff)
downloadrsyslog-1880ff0fc3f2048f3753e0d65ffbccf0ae35e5ce.tar.gz
rsyslog-1880ff0fc3f2048f3753e0d65ffbccf0ae35e5ce.tar.xz
rsyslog-1880ff0fc3f2048f3753e0d65ffbccf0ae35e5ce.zip
defined some entry points in vmstk
Diffstat (limited to 'vmstk.h')
-rw-r--r--vmstk.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/vmstk.h b/vmstk.h
index f9f58528..4e81f5a0 100644
--- a/vmstk.h
+++ b/vmstk.h
@@ -34,6 +34,8 @@ BEGINinterface(vmstk) /* name must also be changed in ENDinterface macro! */
rsRetVal (*Construct)(vmstk_t **ppThis);
rsRetVal (*ConstructFinalize)(vmstk_t __attribute__((unused)) *pThis);
rsRetVal (*Destruct)(vmstk_t **ppThis);
+ rsRetVal (*Push)(vmstk_t *pThis, var_t *pVar);
+ rsRetVal (*Pop)(vmstk_t *pThis, var_t **ppVar);
ENDinterface(vmstk)
#define vmstkCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */