This patch includes all of the callback work for setting clone() and cleanup()
[awesomized/libmemcached] / tests / test.h
index de9d6de2882ed6cca697e923d33788f1b963b5bc..8bc4d7a9ab1e329d1650bb720e389dbea4759ff1 100644 (file)
@@ -1,6 +1,10 @@
 /*
   Structures for generic tests.
 */
+#ifdef __cplusplus
+extern "C" {
+
+#endif
 #include <memcached.h>
 #include "../lib/common.h"
 
@@ -10,7 +14,7 @@ typedef struct test_st test_st;
 struct test_st {
   char *name;
   unsigned int requires_flush;
-  void (*function)(memcached_st *memc);
+  uint8_t (*function)(memcached_st *memc);
 };
 
 struct collection_st {
@@ -22,3 +26,7 @@ struct collection_st {
 
 /* How we make all of this work :) */
 collection_st *gets_collections(void);
+
+#ifdef __cplusplus
+}
+#endif