summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Tecco <ryan@triggit.com>2010-11-21 16:21:46 -0800
committerRyan Tecco <ryan@triggit.com>2010-11-21 16:21:46 -0800
commita01c5b1352dd81d946b1c403bf632fa079a26c0b (patch)
treebd9eeb491b84067414c7a2ed1c5f896c96fb3fd5
parent650df0f98241ff1871c91ca4602ace160ca9d359 (diff)
more extern "C" declarations for C++ compiles
-rw-r--r--async.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/async.h b/async.h
index be3a7a9..f93fc0d 100644
--- a/async.h
+++ b/async.h
@@ -31,6 +31,10 @@
#define __HIREDIS_ASYNC_H
#include "hiredis.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct redisAsyncContext; /* need forward declaration of redisAsyncContext */
/* Reply callback prototype and container */
@@ -93,4 +97,8 @@ int redisvAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdat
int redisAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *format, ...);
int redisAsyncCommandArgv(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, int argc, const char **argv, const size_t *argvlen);
+#ifdef __cplusplus
+}
+#endif
+
#endif