summaryrefslogtreecommitdiffstats
path: root/modules.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules.h')
-rw-r--r--modules.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules.h b/modules.h
index 19695eba..e6398a2e 100644
--- a/modules.h
+++ b/modules.h
@@ -30,6 +30,8 @@
#ifndef MODULES_H_INCLUDED
#define MODULES_H_INCLUDED 1
+#include "objomsr.h"
+
typedef enum eModType_ {
eMOD_IN, /* input module */
eMOD_OUT, /* output module */
@@ -77,8 +79,8 @@ typedef struct moduleInfo {
struct {/* data for output modules */
/* below: perform the configured action
*/
- rsRetVal (*doAction)(selector_t*, uchar*, void*);
- rsRetVal (*parseSelectorAct)(uchar**, selector_t*, void**);
+ rsRetVal (*doAction)(selector_t*, uchar**, unsigned, void*);
+ rsRetVal (*parseSelectorAct)(uchar**, selector_t*, void**,omodStringRequest_t**);
} om;
} mod;
} modInfo_t;