summaryrefslogtreecommitdiffstats
path: root/modules.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-25 10:25:38 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-25 10:25:38 +0000
commit4c69b80ca0366db28bbbb46ddd03dfbc9d85b09c (patch)
tree09bdad5c352f1635ddeaa9d550d6330a0435f321 /modules.h
parentc8eca687f4f0ee08d927e72da1289ffc9d8ff01c (diff)
downloadrsyslog-4c69b80ca0366db28bbbb46ddd03dfbc9d85b09c.tar.gz
rsyslog-4c69b80ca0366db28bbbb46ddd03dfbc9d85b09c.tar.xz
rsyslog-4c69b80ca0366db28bbbb46ddd03dfbc9d85b09c.zip
changed output modules to use a template-based code generation system for
standard entry points (implemented via preprocessor)
Diffstat (limited to 'modules.h')
-rw-r--r--modules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.h b/modules.h
index a3479918..871fbc1b 100644
--- a/modules.h
+++ b/modules.h
@@ -74,7 +74,7 @@ typedef struct moduleInfo {
/* below: perform the configured action
*/
rsRetVal (*doAction)();
- rsRetVal (*parseSelectorAct)(uchar**, selector_t*);
+ rsRetVal (*parseSelectorAct)(uchar**, selector_t*, void**);
} om;
} mod;
} modInfo_t;