From 085c780c551670055eade00cb7fd5766e6470ddf Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 24 Jul 2007 16:07:38 +0000 Subject: TypeName is now pulled from the module itself --- modules.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'modules.c') diff --git a/modules.c b/modules.c index 1565b31c..e1c1a271 100644 --- a/modules.c +++ b/modules.c @@ -69,6 +69,18 @@ static void moduleDestruct(modInfo_t *pThis) } +/* get the state-name of a module. The state name is its name + * together with a short description of the module state (which + * is pulled from the module itself. + * rgerhards, 2007-07-24 + * TODO: the actual state name is not yet pulled + */ +uchar *modGetStateName(modInfo_t *pThis) +{ + return(modGetName(pThis)); +} + + /* get the name of a module */ uchar *modGetName(modInfo_t *pThis) -- cgit