diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 14:31:56 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 14:31:56 +0000 |
commit | 45136c665690534d934d0c0c188dbb18a0131b96 (patch) | |
tree | 50e774280a622de5dfc8b98707f0be6324aeb974 /vmop.h | |
parent | 04622f7d2210cbb8036502afadf5bcdcb0394d28 (diff) | |
download | rsyslog-45136c665690534d934d0c0c188dbb18a0131b96.tar.gz rsyslog-45136c665690534d934d0c0c188dbb18a0131b96.tar.xz rsyslog-45136c665690534d934d0c0c188dbb18a0131b96.zip |
some more interface changes
Diffstat (limited to 'vmop.h')
-rw-r--r-- | vmop.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -67,8 +67,7 @@ typedef struct vmop_s { /* interfaces */ -typedef struct vmop_if_s { - ifBEGIN; /* This MUST always be the first interface member */ +BEGINinterface(vmop) /* name must also be changed in ENDinterface macro! */ INTERFACEObjDebugPrint(vmop); rsRetVal (*Construct)(vmop_t **ppThis); rsRetVal (*ConstructFinalize)(vmop_t __attribute__((unused)) *pThis); @@ -76,11 +75,10 @@ typedef struct vmop_if_s { rsRetVal (*SetOpcode)(vmop_t *pThis, opcode_t opcode); rsRetVal (*SetVar)(vmop_t *pThis, var_t *pVar); rsRetVal (*Opcode2Str)(vmop_t *pThis, uchar **ppName); -} vmop_if_t; +ENDinterface(vmop) #define vmopCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ /* the remaining prototypes */ -PROTOTYPEObjClassInit(vmop); -PROTOTYPEObjQueryInterface(vmop); +PROTOTYPEObj(vmop); #endif /* #ifndef INCLUDED_VMOP_H */ |