6fcdb25764cff0052c2d6eaba5a3e6e9fa01e937
[awesomized/libmemcached] / libmemcached / dump.h
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary: Simple method for dumping data from Memcached.
9 *
10 */
11
12 #ifndef __LIBMEMCACHED_DUMP_H__
13 #define __LIBMEMCACHED_DUMP_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 LIBMEMCACHED_API
20 memcached_return_t memcached_dump(memcached_st *ptr, memcached_dump_fn *function, void *context, uint32_t number_of_callbacks);
21
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* __LIBMEMCACHED_DUMP_H__ */