Merge Thomason's cork patch.
[awesomized/libmemcached] / docs / memcached_dump.pod
index a80a60d6a76c604eb0f0c9e31444107edb3d0f98..2d53701635e17b016ad53793cb3ccc3dfa33930d 100644 (file)
@@ -10,13 +10,13 @@ C Client Library for memcached (libmemcached, -lmemcached)
 
   #include <memcached.h>
 
-  memcached_return
+  memcached_return_t
     memcached_dump (memcached_st *ptr, 
-                    memcached_dump_func *function, 
+                    memcached_dump_fn *function, 
                     void *context, 
                     uint32_t number_of_callbacks);
 
-  typedef memcached_return (*memcached_dump_func)(memcached_st *ptr,  
+  typedef memcached_return_t (*memcached_dump_fn)(memcached_st *ptr,  
                                                   const char *key, 
                                                   size_t key_length, 
                                                   void *context);
@@ -32,14 +32,14 @@ Currently the binar protocol is not supported.
 
 =head1 RETURN
 
-A value of type C<memcached_return> is returned
+A value of type C<memcached_return_t> is returned
 On success that value will be C<MEMCACHED_SUCCESS>.
 Use memcached_strerror() to translate this value to a printable string.
 
 =head1 HOME
 
 To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
 
 =head1 AUTHOR