aboutsummaryrefslogtreecommitdiff
path: root/msgpack.h
diff options
context:
space:
mode:
Diffstat (limited to 'msgpack.h')
-rw-r--r--msgpack.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/msgpack.h b/msgpack.h
index 0979605..99240b6 100644
--- a/msgpack.h
+++ b/msgpack.h
@@ -112,14 +112,14 @@ struct mp_timestamp {
enum msgpack_type;
-int msgpack_read_nil (msgpack_t *pack);
+int msgpack_read_nil (msgpack_t *pack); // NOT IMPLEMENTED
int msgpack_read_bool (msgpack_t *pack, bool *m);
int msgpack_read_int (msgpack_t *pack, union mp_int *m);
int msgpack_read_float (msgpack_t *pack, union mp_float *m);
int msgpack_read_raw (msgpack_t *pack, struct mp_bin *m);
// int msgpack_read_raw_cpy (msgpack_t *pack, struct mp_bin *m);
-int msgpack_read_ext (msgpack_t *pack, struct mp_bin *m);
+int msgpack_read_ext (msgpack_t *pack, struct mp_bin *m); // NOT IMPLEMENTED
// int msgpack_read_ext_cpy (msgpack_t *pack, struct mp_bin *m);
int msgpack_read_array (msgpack_t *pack, size_t *length);
@@ -127,14 +127,13 @@ int msgpack_read_map (msgpack_t *pack, size_t *length);
// int msgpack_read_array2 (const msgpack_t *pack, struct mp_array *m);
// int msgpack_read_map2 (const msgpack_t *pack, struct mp_map *m);
-
int msgpack_write_nil (msgpack_t *pack);
-int msgpack_write_bool (msgpack_t *pack, const bool *m);
+int msgpack_write_bool (msgpack_t *pack, const bool *m); // NOT IMPLEMENTED
int msgpack_write_int (msgpack_t *pack, const union mp_int *m, enum msgpack_type subtype);
int msgpack_write_float (msgpack_t *pack, const union mp_float *m, enum msgpack_type subtype);
int msgpack_write_raw (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype);
-int msgpack_write_ext (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype);
+int msgpack_write_ext (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype); // NOT IMPLEMENTED
int msgpack_write_map (msgpack_t *pack, const size_t *m);
int msgpack_write_array (msgpack_t *pack, const size_t *m);