From 6c1dc3ccbcd05115f3737f2b2db06be2505e68c6 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 24 Jul 2007 08:08:53 +0000 Subject: changed select action config reader to use module interface --- modules.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules.h') diff --git a/modules.h b/modules.h index da37a91c..a57e99a7 100644 --- a/modules.h +++ b/modules.h @@ -73,12 +73,15 @@ typedef struct moduleInfo { /* below: perform the configured action */ rsRetVal (*doAction)(); + rsRetVal (*parseSelectorAct)(uchar**, selector_t*); } om; } mod; } modInfo_t; /* prototypes */ rsRetVal doModInit(rsRetVal (*modInit)(), uchar *name); +modInfo_t *omodGetNxt(modInfo_t *pThis); +uchar *modGetName(modInfo_t *pThis); void modPrintList(void); #endif /* #ifndef MODULES_H_INCLUDED */ -- cgit