2 * MessagePack unpacking routine template
4 * Copyright (C) 2008-2010 FURUHASHI Sadayuki
6 * Distributed under the Boost Software License, Version 1.0.
7 * (See accompanying file LICENSE_1_0.txt or copy at
8 * http://www.boost.org/LICENSE_1_0.txt)
10 #ifndef MSGPACK_UNPACK_DEFINE_H
11 #define MSGPACK_UNPACK_DEFINE_H
13 #include "vendor/msgpack/sysdep.h"
24 #ifndef MSGPACK_EMBED_STACK_SIZE
25 #define MSGPACK_EMBED_STACK_SIZE 32
30 MSGPACK_CS_HEADER
= 0x00, // nil
33 //MSGPACK_CS_ = 0x02, // false
34 //MSGPACK_CS_ = 0x03, // true
36 MSGPACK_CS_BIN_8
= 0x04,
37 MSGPACK_CS_BIN_16
= 0x05,
38 MSGPACK_CS_BIN_32
= 0x06,
40 MSGPACK_CS_EXT_8
= 0x07,
41 MSGPACK_CS_EXT_16
= 0x08,
42 MSGPACK_CS_EXT_32
= 0x09,
44 MSGPACK_CS_FLOAT
= 0x0a,
45 MSGPACK_CS_DOUBLE
= 0x0b,
46 MSGPACK_CS_UINT_8
= 0x0c,
47 MSGPACK_CS_UINT_16
= 0x0d,
48 MSGPACK_CS_UINT_32
= 0x0e,
49 MSGPACK_CS_UINT_64
= 0x0f,
50 MSGPACK_CS_INT_8
= 0x10,
51 MSGPACK_CS_INT_16
= 0x11,
52 MSGPACK_CS_INT_32
= 0x12,
53 MSGPACK_CS_INT_64
= 0x13,
55 MSGPACK_CS_FIXEXT_1
= 0x14,
56 MSGPACK_CS_FIXEXT_2
= 0x15,
57 MSGPACK_CS_FIXEXT_4
= 0x16,
58 MSGPACK_CS_FIXEXT_8
= 0x17,
59 MSGPACK_CS_FIXEXT_16
= 0x18,
61 MSGPACK_CS_STR_8
= 0x19, // str8
62 MSGPACK_CS_STR_16
= 0x1a, // str16
63 MSGPACK_CS_STR_32
= 0x1b, // str32
64 MSGPACK_CS_ARRAY_16
= 0x1c,
65 MSGPACK_CS_ARRAY_32
= 0x1d,
66 MSGPACK_CS_MAP_16
= 0x1e,
67 MSGPACK_CS_MAP_32
= 0x1f,
69 //MSGPACK_ACS_BIG_INT_VALUE,
70 //MSGPACK_ACS_BIG_FLOAT_VALUE,
71 MSGPACK_ACS_STR_VALUE
,
72 MSGPACK_ACS_BIN_VALUE
,
74 } msgpack_unpack_state
;
78 MSGPACK_CT_ARRAY_ITEM
,
81 } msgpack_container_type
;
88 #endif /* msgpack/unpack_define.h */
This page took 0.035101 seconds and 4 git commands to generate.