11 lines
171 B
C
11 lines
171 B
C
#ifndef HIREDIS_COMMON_H
|
|
#define HIREDIS_COMMON_H 1
|
|
|
|
#define REDIS_OK 0
|
|
#define REDIS_ESYS -1
|
|
#define REDIS_EGAI -2
|
|
#define REDIS_EPARSER -3
|
|
#define REDIS_EEOF -4
|
|
|
|
#endif
|