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 pi...@apache.org on 2007/03/22 12:52:42 UTC

svn commit: r521229 - in /webservices/axis2/trunk/c/modules/core/deployment: axis2_ws_info_list.h repos_listener.c

Author: pini
Date: Thu Mar 22 04:52:41 2007
New Revision: 521229

URL: http://svn.apache.org/viewvc?view=rev&rev=521229
Log:
Dropped macros

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/axis2_ws_info_list.h
    webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/axis2_ws_info_list.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/axis2_ws_info_list.h?view=diff&rev=521229&r1=521228&r2=521229
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/axis2_ws_info_list.h (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/axis2_ws_info_list.h Thu Mar 22 04:52:41 2007
@@ -166,38 +166,6 @@
     axis2_ws_info_list_create_with_dep_engine(const axis2_env_t *env,
         struct axis2_dep_engine *dep_engine);
 
-/** Frees the ws info list. */
-#define AXIS2_WS_INFO_LIST_FREE(ws_info_list, env) \
-      axis2_ws_info_list_free (ws_info_list, env)
-
-/** Initialize the ws info list. */
-#define AXIS2_WS_INFO_LIST_INIT(ws_info_list, env) \
-      axis2_ws_info_list_init (ws_info_list, env)
-
-/** Add ws info item. */
-#define AXIS2_WS_INFO_LIST_ADD_WS_INFO_ITEM(ws_info_list, env, file, type) \
-      axis2_ws_info_list_add_ws_info_item (ws_info_list, env, file, type)
-
-/** Get file item. */
-#define AXIS2_WS_INFO_LIST_GET_FILE_ITEM(ws_info_list, env, file_name) \
-      axis2_ws_info_list_get_file_item (ws_info_list, env, file_name)
-
-/** Is modified. */
-#define AXIS2_WS_INFO_LIST_IS_MODIFIED(ws_info_list, env, file, ws_info) \
-      axis2_ws_info_list_is_modified (ws_info_list, env, file, ws_info)
-
-/** Is file exist. */
-#define AXIS2_WS_INFO_LIST_IS_FILE_EXIST(ws_info_list, env, file_name) \
-      axis2_ws_info_list_is_file_exist (ws_info_list, env, file_name)
-
-/** Check for undeploy. */
-#define AXIS2_WS_INFO_LIST_CHECK_FOR_UNDEPLOY(ws_info_list, env) \
-      axis2_ws_info_list_check_for_undeploy (ws_info_list, env)
-
-/** Update. */
-#define AXIS2_WS_INFO_LIST_UPDATE(ws_info_list, env) \
-      axis2_ws_info_list_update (ws_info_list, env)
-
 
 /*************************** End of function macros ***************************/
 

Modified: webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c?view=diff&rev=521229&r1=521228&r2=521229
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c Thu Mar 22 04:52:41 2007
@@ -122,7 +122,7 @@
 
     if (repos_listener->info_list)
     {
-        AXIS2_WS_INFO_LIST_FREE(repos_listener->info_list, env);
+        axis2_ws_info_list_free(repos_listener->info_list, env);
     }
 
     AXIS2_FREE(env->allocator, repos_listener);
@@ -172,7 +172,7 @@
 axis2_repos_listener_update(axis2_repos_listener_t *repos_listener,
     const axis2_env_t *env)
 {
-    return AXIS2_WS_INFO_LIST_UPDATE(repos_listener->info_list, env);
+    return axis2_ws_info_list_update(repos_listener->info_list, env);
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
@@ -183,7 +183,7 @@
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
 
-    status = AXIS2_WS_INFO_LIST_INIT(repos_listener->info_list, env);
+    status = axis2_ws_info_list_init(repos_listener->info_list, env);
     if (AXIS2_SUCCESS != status)
     {
         return status;
@@ -207,7 +207,7 @@
 {
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
 
-    AXIS2_WS_INFO_LIST_INIT(repos_listener->info_list, env);
+    axis2_ws_info_list_init(repos_listener->info_list, env);
     /* axis2_repos_listener_check_modules(repos_listener, env); */
     axis2_repos_listener_check_svcs(repos_listener, env);
     axis2_repos_listener_update(repos_listener, env);
@@ -247,7 +247,7 @@
     {
         axis2_file_t *file = NULL;
         file = axis2_array_list_get(current_info_list, env, i);
-        status = AXIS2_WS_INFO_LIST_ADD_WS_INFO_ITEM(repos_listener->info_list, env,
+        status = axis2_ws_info_list_add_ws_info_item(repos_listener->info_list, env,
             file, type);
         if (AXIS2_SUCCESS != status)
         {



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org