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 sa...@apache.org on 2005/10/10 13:29:14 UTC

svn commit: r312621 - /webservices/axis2/trunk/c/include/axis2_environment.h

Author: samisa
Date: Mon Oct 10 04:29:11 2005
New Revision: 312621

URL: http://svn.apache.org/viewcvs?rev=312621&view=rev
Log:
Log related updates done

Modified:
    webservices/axis2/trunk/c/include/axis2_environment.h

Modified: webservices/axis2/trunk/c/include/axis2_environment.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_environment.h?rev=312621&r1=312620&r2=312621&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_environment.h (original)
+++ webservices/axis2/trunk/c/include/axis2_environment.h Mon Oct 10 04:29:11 2005
@@ -20,6 +20,7 @@
 #include <axis2_allocator.h>
 #include <axis2_error.h>
 #include <axis2_stream.h>
+#include <axis2_log.h>
 
 struct axis2_environment;
 struct axis2_environment_ops;
@@ -32,8 +33,9 @@
     axis2_allocator_t *allocator;
     axis2_error_t *error;
     axis2_stream_t *stream;
+    axis2_log_t *log;
 } axis2_environment_t;
 
-axis2_environment_t *axis2_environment_create(axis2_allocator_t *allocator, axis2_error_t *error, axis2_stream_t *stream);
+axis2_environment_t *axis2_environment_create(axis2_allocator_t *allocator, axis2_error_t *error, axis2_stream_t *stream, axis2_log_t *log);
 
 #endif /* AXIS2_ENVIRONMENT_H */