You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2009/06/30 21:26:41 UTC

svn commit: r789890 - /apr/apr-util/branches/1.4.x/include/apr_memcache.h

Author: fuankg
Date: Tue Jun 30 19:26:40 2009
New Revision: 789890

URL: http://svn.apache.org/viewvc?rev=789890&view=rev
Log:
fixed header so that the export generator script can get the function name.

Modified:
    apr/apr-util/branches/1.4.x/include/apr_memcache.h

Modified: apr/apr-util/branches/1.4.x/include/apr_memcache.h
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/include/apr_memcache.h?rev=789890&r1=789889&r2=789890&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/include/apr_memcache.h (original)
+++ apr/apr-util/branches/1.4.x/include/apr_memcache.h Tue Jun 30 19:26:40 2009
@@ -260,10 +260,9 @@
  * @param values hash of keys and values that this key will be added to
  * @return
  */
-APU_DECLARE(void) 
-apr_memcache_add_multget_key(apr_pool_t *data_pool,
-                             const char* key,
-                             apr_hash_t **values);
+APU_DECLARE(void) apr_memcache_add_multget_key(apr_pool_t *data_pool,
+                                               const char* key,
+                                               apr_hash_t **values);
 
 /**
  * Gets multiple values from the server, allocating the values out of p
@@ -275,11 +274,10 @@
  *        result of the multiget call.
  * @return
  */
-APU_DECLARE(apr_status_t)
-apr_memcache_multgetp(apr_memcache_t *mc,
-                      apr_pool_t *temp_pool,
-                      apr_pool_t *data_pool,
-                      apr_hash_t *values);
+APU_DECLARE(apr_status_t) apr_memcache_multgetp(apr_memcache_t *mc,
+                                                apr_pool_t *temp_pool,
+                                                apr_pool_t *data_pool,
+                                                apr_hash_t *values);
 
 /**
  * Sets a value by key on the server