X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Ferror.hpp;h=c2cdcc51c53b3744cde15261a71d5ae0a5c1fe0a;hb=47f45992107361ad58c170bdf78fdc92523fab06;hp=c3c83fade2c3a16f9d7a54385e69b0e0d5522dbc;hpb=a6c3e3a3d04f379b1480c8c88a8eae17e54b1449;p=m6w6%2Flibmemcached diff --git a/libmemcached/error.hpp b/libmemcached/error.hpp index c3c83fad..c2cdcc51 100644 --- a/libmemcached/error.hpp +++ b/libmemcached/error.hpp @@ -35,9 +35,9 @@ * */ -#pragma once +#include -#include +#pragma once #ifdef __cplusplus @@ -45,6 +45,11 @@ #define TOSTRING(x) STRINGIFY(x) #define MEMCACHED_AT __FILE__ ":" TOSTRING(__LINE__) +LIBMEMCACHED_LOCAL +memcached_return_t memcached_set_parser_error(memcached_st& memc, + const char *at, + const char *format, ...); + LIBMEMCACHED_LOCAL memcached_return_t memcached_set_error(memcached_st&, memcached_return_t rc, const char *at); @@ -81,4 +86,19 @@ LIBMEMCACHED_LOCAL LIBMEMCACHED_LOCAL memcached_return_t memcached_set_errno(memcached_server_st&, int local_errno, const char *at); +LIBMEMCACHED_LOCAL +bool memcached_has_current_error(memcached_st&); + +LIBMEMCACHED_LOCAL +bool memcached_has_current_error(memcached_server_st&); + +LIBMEMCACHED_LOCAL +void memcached_error_free(memcached_st&); + +LIBMEMCACHED_LOCAL +void memcached_error_free(memcached_server_st&); + +LIBMEMCACHED_LOCAL +memcached_error_t *memcached_error_copy(const memcached_server_st&); + #endif