[svn-commits] bbryant: branch group/data_api_gsoc2009 r204379 - /team/group/data_api_gsoc20...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 29 19:44:50 CDT 2009


Author: bbryant
Date: Mon Jun 29 19:44:47 2009
New Revision: 204379

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=204379
Log:
Add verison constants for ast_data structs.

Modified:
    team/group/data_api_gsoc2009/include/asterisk/data.h

Modified: team/group/data_api_gsoc2009/include/asterisk/data.h
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/data_api_gsoc2009/include/asterisk/data.h?view=diff&rev=204379&r1=204378&r2=204379
==============================================================================
--- team/group/data_api_gsoc2009/include/asterisk/data.h (original)
+++ team/group/data_api_gsoc2009/include/asterisk/data.h Mon Jun 29 19:44:47 2009
@@ -106,6 +106,8 @@
 	/*! \brief The tokenizer is used to retrieve from the node generator
 	 *         the list of possible attributes in the search string. */
 	ast_data_tokenizer tokenizer;
+	/*! \brief ast_data_handler version */
+	#define AST_DATA_HANDLER_VERSION 1
 };
 
 /*! \brief This entries are for multiple registers. */
@@ -114,6 +116,8 @@
 	const char *path;
 	/*! \brief Data handler structure. */
 	const struct ast_data_handler *handler;
+	/*! \brief ast_data_entry version */
+	#define AST_DATA_ENTRY_VERSION 1
 };
 
 #define AST_DATA_ENTRY(__path, __handler) { .path = __path, .handler = __handler }




More information about the svn-commits mailing list