aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-20 19:16:24 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-20 19:16:24 +0000
commitf35a403b76def57194bd43fe32d6ac15537c00a8 (patch)
tree5a792265c8f8fe8fbc4c7f96288ef00628344f66
parentfeb6455c27b594d3da0dd96fe5c519a49c04c337 (diff)
re-doxygen some comments
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89462 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/module.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 7ea89fc36..b867f6517 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -183,10 +183,11 @@ enum ast_module_flags {
struct ast_module_info {
- /* The 'self' pointer for a module; it will be set by the loader before
- it calls the module's load_module() entrypoint, and used by various
- other macros that need to identify the module.
- */
+ /*!
+ * The 'self' pointer for a module; it will be set by the loader before
+ * it calls the module's load_module() entrypoint, and used by various
+ * other macros that need to identify the module.
+ */
struct ast_module *self;
enum ast_module_load_result (*load)(void); /* register stuff etc. Optional. */
@@ -203,7 +204,9 @@ struct ast_module_info {
const char *key;
unsigned int flags;
- const char buildopt_sum[33]; /* The value of AST_BUILDOPT_SUM when this module was compiled */
+
+ /*! The value of AST_BUILDOPT_SUM when this module was compiled */
+ const char buildopt_sum[33];
};
void ast_module_register(const struct ast_module_info *);