summaryrefslogtreecommitdiffstats
path: root/vmstk.h
diff options
context:
space:
mode:
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! */