diff options
| author | frsyuki <frsyuki@users.sourceforge.jp> | 2010-04-25 08:16:12 +0900 |
|---|---|---|
| committer | frsyuki <frsyuki@users.sourceforge.jp> | 2010-04-25 08:16:12 +0900 |
| commit | 0a5c2e7ab9ade5b9789782f10cc51eff9cacc0a9 (patch) | |
| tree | dd1b2d79d24dca646f5b186f5daa420357982b57 /cpp/msgpack/object.h | |
| parent | 35802ba94948463db19308c8ec385243c51d1485 (diff) | |
| download | msgpack-python-0a5c2e7ab9ade5b9789782f10cc51eff9cacc0a9.tar.gz | |
c,cpp: MSGPACK_OBJECT_NIL = 0x00
Diffstat (limited to 'cpp/msgpack/object.h')
| -rw-r--r-- | cpp/msgpack/object.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/msgpack/object.h b/cpp/msgpack/object.h index bbfac19..71a27bb 100644 --- a/cpp/msgpack/object.h +++ b/cpp/msgpack/object.h @@ -27,14 +27,14 @@ extern "C" { typedef enum { - MSGPACK_OBJECT_NIL = 0x01, - MSGPACK_OBJECT_BOOLEAN = 0x02, - MSGPACK_OBJECT_POSITIVE_INTEGER = 0x03, - MSGPACK_OBJECT_NEGATIVE_INTEGER = 0x04, - MSGPACK_OBJECT_DOUBLE = 0x05, - MSGPACK_OBJECT_RAW = 0x06, - MSGPACK_OBJECT_ARRAY = 0x07, - MSGPACK_OBJECT_MAP = 0x08, + MSGPACK_OBJECT_NIL = 0x00, + MSGPACK_OBJECT_BOOLEAN = 0x01, + MSGPACK_OBJECT_POSITIVE_INTEGER = 0x02, + MSGPACK_OBJECT_NEGATIVE_INTEGER = 0x03, + MSGPACK_OBJECT_DOUBLE = 0x04, + MSGPACK_OBJECT_RAW = 0x05, + MSGPACK_OBJECT_ARRAY = 0x06, + MSGPACK_OBJECT_MAP = 0x07, } msgpack_object_type; |
