Updated AUTHORS
[m6w6/libmemcached] / tests / test.h
index 88e62800438beb5a7f094bd0889dd91274694d89..8bc4d7a9ab1e329d1650bb720e389dbea4759ff1 100644 (file)
@@ -1,13 +1,20 @@
 /*
   Structures for generic tests.
 */
+#ifdef __cplusplus
+extern "C" {
+
+#endif
+#include <memcached.h>
+#include "../lib/common.h"
+
 typedef struct collection_st collection_st;
 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 {
@@ -19,3 +26,7 @@ struct collection_st {
 
 /* How we make all of this work :) */
 collection_st *gets_collections(void);
+
+#ifdef __cplusplus
+}
+#endif