From a24cee11b718603fbc681e4a7a23f50c8d785ad7 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 25 Feb 2008 10:28:23 +0000 Subject: - added some temporary testing aids to conf.c, so that we can debug expression support as it is implemented - fixed a couple of bugs in expression system - added more operations to virtual machine - now works well with constants --- vm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vm.h') diff --git a/vm.h b/vm.h index c9173255..1234349e 100644 --- a/vm.h +++ b/vm.h @@ -49,6 +49,7 @@ BEGINinterface(vm) /* name must also be changed in ENDinterface macro! */ rsRetVal (*ConstructFinalize)(vm_t __attribute__((unused)) *pThis); rsRetVal (*Destruct)(vm_t **ppThis); rsRetVal (*ExecProg)(vm_t *pThis, vmprg_t *pProg); + rsRetVal (*PopBoolFromStack)(vm_t *pThis, var_t **ppVar); /* there are a few cases where we need this... */ ENDinterface(vm) #define vmCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ -- cgit