add extern "C" for C++ compiles

This commit is contained in:
Ryan Tecco 2010-06-08 14:02:56 -07:00 committed by Pieter Noordhuis
parent 09a0fe626f
commit 74254a3b39
1 changed files with 8 additions and 0 deletions

View File

@ -69,6 +69,10 @@
#define REDIS_REPLY_NIL 4
#define REDIS_REPLY_STATUS 5
#ifdef __cplusplus
extern "C" {
#endif
/* This is the reply object returned by redisCommand() */
typedef struct redisReply {
int type; /* REDIS_REPLY_* */
@ -154,4 +158,8 @@ void *redisvCommand(redisContext *c, const char *format, va_list ap);
void *redisCommand(redisContext *c, const char *format, ...);
void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen);
#ifdef __cplusplus
}
#endif
#endif