2506ddf2d8af9a6727edf9e3b23e9d384a58dc79
[awesomized/libmemcached] / libmemcached / do.h
1 /* LibMemcached
2 * Copyright (C) 2006-2010 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: Internal functions used by the library. Not for public use!
9 *
10 */
11
12 #ifndef __LIBMEMCACHED_DO_H__
13 #define __LIBMEMCACHED_DO_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 LIBMEMCACHED_LOCAL
20 memcached_return_t memcached_do(memcached_server_write_instance_st ptr,
21 const void *commmand,
22 size_t command_length,
23 bool with_flush);
24
25 LIBMEMCACHED_LOCAL
26 memcached_return_t memcached_vdo(memcached_server_write_instance_st ptr,
27 const struct libmemcached_io_vector_st *vector, size_t count,
28 bool with_flush);
29
30 #ifdef __cplusplus
31 }
32 #endif
33
34 #endif /* __LIBMEMCACHED_DO_H__ */