[svn-commits] kpfleming: branch 1.4 r89462 - /branches/1.4/include/asterisk/module.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 20 13:16:24 CST 2007


Author: kpfleming
Date: Tue Nov 20 13:16:24 2007
New Revision: 89462

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89462
Log:
re-doxygen some comments

Modified:
    branches/1.4/include/asterisk/module.h

Modified: branches/1.4/include/asterisk/module.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/module.h?view=diff&rev=89462&r1=89461&r2=89462
==============================================================================
--- branches/1.4/include/asterisk/module.h (original)
+++ branches/1.4/include/asterisk/module.h Tue Nov 20 13:16:24 2007
@@ -183,10 +183,11 @@
 
 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 @@
 
 	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 *);




More information about the svn-commits mailing list