summaryrefslogtreecommitdiffstats
path: root/runtime/modules.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/modules.h')
-rw-r--r--runtime/modules.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/modules.h b/runtime/modules.h
index 62f86ded..4ba6411e 100644
--- a/runtime/modules.h
+++ b/runtime/modules.h
@@ -54,7 +54,8 @@ typedef enum eModType_ {
eMOD_IN = 0, /* input module */
eMOD_OUT = 1, /* output module */
eMOD_LIB = 2, /* library module */
- eMOD_PARSER = 3 /* parser module */
+ eMOD_PARSER = 3,/* parser module */
+ eMOD_STRGEN = 4 /* strgen module */
} eModType_t;
@@ -122,6 +123,9 @@ struct modInfo_s {
struct { /* data for parser modules */
rsRetVal (*parse)(msg_t*);
} pm;
+ struct { /* data for strgen modules */
+ rsRetVal (*strgen)(msg_t*, uchar* pBuf);
+ } sm;
} mod;
void *pModHdlr; /* handler to the dynamic library holding the module */
# ifdef DEBUG