X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fcommon.h;h=3391c22957ed6113b49656296953de722c6fc1b6;hb=93eeb24c446d0d0255de2bebb8da6fc0546039fc;hp=1e1db2f5e0dd2028c8f9a589a34bf19080a3bc3d;hpb=5d4981688b335b52f18e25c4c42c1314ed7e17df;p=m6w6%2Flibmemcached diff --git a/libmemcached/common.h b/libmemcached/common.h index 1e1db2f5..3391c229 100644 --- a/libmemcached/common.h +++ b/libmemcached/common.h @@ -13,8 +13,8 @@ Common include file for libmemached */ -#ifndef LIBMEMCACHED_COMMON_H -#define LIBMEMCACHED_COMMON_H +#ifndef __LIBMEMCACHED_COMMON_H__ +#define __LIBMEMCACHED_COMMON_H__ #include "config.h" @@ -57,6 +57,7 @@ typedef struct memcached_server_st memcached_server_instance_st; /* These are private not to be installed headers */ +#include "libmemcached/do.h" #include "libmemcached/io.h" #include "libmemcached/internal.h" #include "libmemcached/libmemcached_probes.h" @@ -95,10 +96,15 @@ typedef enum { #define SMALL_STRING_LEN 1024 #define HUGE_STRING_LEN 8196 +#ifdef __cplusplus +extern "C" { +#endif + LIBMEMCACHED_LOCAL memcached_return_t memcached_connect(memcached_server_instance_st *ptr); + LIBMEMCACHED_LOCAL -void memcached_quit_server(memcached_server_instance_st *ptr, uint8_t io_death); +void memcached_quit_server(memcached_server_instance_st *ptr, bool io_death); LIBMEMCACHED_LOCAL memcached_return_t run_distribution(memcached_st *ptr); @@ -118,9 +124,6 @@ memcached_return_t run_distribution(memcached_st *ptr); #define memcached_set_allocated(__object, __value) ((__object)->options.is_allocated(= (__value)) -LIBMEMCACHED_LOCAL -memcached_return_t memcached_do(memcached_server_instance_st *ptr, const void *commmand, - size_t command_length, uint8_t with_flush); LIBMEMCACHED_LOCAL memcached_return_t value_fetch(memcached_server_instance_st *ptr, char *buffer, @@ -133,7 +136,6 @@ memcached_return_t memcached_key_test(const char * const *keys, const size_t *key_length, size_t number_of_keys); - LIBMEMCACHED_LOCAL uint32_t generate_hash(memcached_st *ptr, const char *key, size_t key_length); @@ -217,5 +219,8 @@ static inline void *libmemcached_calloc(const memcached_st *ptr, size_t nelem, s return ptr->allocators.calloc(ptr, nelem, size, ptr->allocators.context); } +#ifdef __cplusplus +} +#endif -#endif /* LIBMEMCACHED_COMMON_H */ +#endif /* __LIBMEMCACHED_COMMON_H__ */