You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/11/28 06:34:18 UTC

svn commit: r349378 - /webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c

Author: samisa
Date: Sun Nov 27 21:34:09 2005
New Revision: 349378

URL: http://svn.apache.org/viewcvs?rev=349378&view=rev
Log:
Added missing prefixes in method names

Modified:
    webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c

Modified: webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c?rev=349378&r1=349377&r2=349378&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/svc_ctx.c Sun Nov 27 21:34:09 2005
@@ -168,7 +168,7 @@
 /**
  * The method is used to do the intialization of the EngineContext
  */
-axis2_status_t AXIS2_CALL init(struct axis2_svc_ctx *svc_ctx, 
+axis2_status_t AXIS2_CALL axis2_svc_ctx_init(struct axis2_svc_ctx *svc_ctx, 
                                             axis2_env_t **env,
                     axis2_engine_config_t *engine_config) 
 {
@@ -190,7 +190,7 @@
 /**
  * @return Returns the svc_id.
  */
-axis2_char_t* AXIS2_CALL get_svc_id(struct axis2_svc_ctx *svc_ctx, 
+axis2_char_t* AXIS2_CALL axis2_svc_ctx_get_svc_id(struct axis2_svc_ctx *svc_ctx, 
                                             axis2_env_t **env) 
 {
     AXIS2_FUNC_PARAM_CHECK(svc_ctx, env, NULL);
@@ -198,21 +198,21 @@
 }
 
 
-axis2_svc_t* AXIS2_CALL get_svc(struct axis2_svc_ctx *svc_ctx, 
+axis2_svc_t* AXIS2_CALL axis2_svc_ctx_get_svc(struct axis2_svc_ctx *svc_ctx, 
                                             axis2_env_t **env) 
 {
     AXIS2_FUNC_PARAM_CHECK(svc_ctx, env, NULL);
     return AXIS2_INTF_TO_IMPL(svc_ctx)->svc;
 }
 
-struct axis2_conf_ctx* AXIS2_CALL get_conf_ctx(struct axis2_svc_ctx *svc_ctx, 
+struct axis2_conf_ctx* AXIS2_CALL axis2_svc_ctx_get_conf_ctx(struct axis2_svc_ctx *svc_ctx, 
                                             axis2_env_t **env) 
 {
     AXIS2_FUNC_PARAM_CHECK(svc_ctx, env, NULL);
     return NULL; /*(struct axis2_conf_ctx *) AXIS2_SVC_GRP_CTX_GET_PARENT(AXIS2_INTF_TO_IMPL(svc_ctx)->parent, env);*/
 }
 
-axis2_operation_ctx_t* AXIS2_CALL create_operation_ctx(struct axis2_svc_ctx *svc_ctx, 
+axis2_operation_ctx_t* AXIS2_CALL axis2_svc_ctx_create_operation_ctx(struct axis2_svc_ctx *svc_ctx, 
                                             axis2_env_t **env, axis2_qname_t *qname) 
 {
     axis2_svc_ctx_impl_t *svc_ctx_impl = NULL;