You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/03/28 08:42:16 UTC

svn commit: r389419 - in /webservices/axis2/trunk/c: include/axis2_xml_reader.h modules/xml/parser/libxml2/libxml2_reader_wrapper.c

Author: nandika
Date: Mon Mar 27 22:42:14 2006
New Revision: 389419

URL: http://svn.apache.org/viewcvs?rev=389419&view=rev
Log:
init and cleanup function signatures changed

Modified:
    webservices/axis2/trunk/c/include/axis2_xml_reader.h
    webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c

Modified: webservices/axis2/trunk/c/include/axis2_xml_reader.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_xml_reader.h?rev=389419&r1=389418&r2=389419&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_xml_reader.h (original)
+++ webservices/axis2/trunk/c/include/axis2_xml_reader.h Mon Mar 27 22:42:14 2006
@@ -346,13 +346,13 @@
  */
 
 AXIS2_DECLARE(axis2_status_t)
-axis2_xml_reader_init(axis2_env_t **env);
+axis2_xml_reader_init();
 
 /**
  * parser cleanup function 
  */
 AXIS2_DECLARE(axis2_status_t)
-axis2_xml_reader_cleanup(axis2_env_t **env);
+axis2_xml_reader_cleanup();
 
 
 /********************************* Macros *************************************/

Modified: webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c?rev=389419&r1=389418&r2=389419&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/libxml2/libxml2_reader_wrapper.c Mon Mar 27 22:42:14 2006
@@ -208,14 +208,14 @@
 
 /*******************************************************************************/
 AXIS2_DECLARE( axis2_status_t )
-axis2_xml_reader_init(axis2_env_t **env)
+axis2_xml_reader_init()
 {
     xmlInitParser();
     return AXIS2_SUCCESS;
 }
 
 AXIS2_DECLARE( axis2_status_t )
-axis2_xml_reader_cleanup(axis2_env_t **env)
+axis2_xml_reader_cleanup()
 {
     xmlCleanupParser();
     return AXIS2_SUCCESS;