summaryrefslogtreecommitdiff
path: root/src/rio.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-05-18 11:45:40 +0200
committerantirez <antirez@gmail.com>2016-06-03 18:14:04 +0200
commit8ec28002be78ee890211265bef4f0b1207627fb4 (patch)
treec41c67e63520828f148d76e510b6dca2a1546d7d /src/rio.h
parent27e5f385c1839157574b80f2079d79bf40e32639 (diff)
downloadredis-8ec28002be78ee890211265bef4f0b1207627fb4.tar.gz
Modules: support for modules native data types.
Diffstat (limited to 'src/rio.h')
-rw-r--r--src/rio.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rio.h b/src/rio.h
index 711308ce6..6749723d2 100644
--- a/src/rio.h
+++ b/src/rio.h
@@ -135,6 +135,9 @@ size_t rioWriteBulkString(rio *r, const char *buf, size_t len);
size_t rioWriteBulkLongLong(rio *r, long long l);
size_t rioWriteBulkDouble(rio *r, double d);
+struct redisObject;
+int rioWriteBulkObject(rio *r, struct redisObject *obj);
+
void rioGenericUpdateChecksum(rio *r, const void *buf, size_t len);
void rioSetAutoSync(rio *r, off_t bytes);