diff options
| author | INADA Naoki <songofacandy@gmail.com> | 2013-10-20 09:18:50 -0700 |
|---|---|---|
| committer | INADA Naoki <songofacandy@gmail.com> | 2013-10-20 09:18:50 -0700 |
| commit | e802abebf18f0126aaad0c7bdf8ba0042cb4602d (patch) | |
| tree | 67e86c2d28bce248448c8bb92ba196c1381c5d12 /msgpack/pack.h | |
| parent | ec0691fb2c7ca28eb4544b98dcb5e59933233997 (diff) | |
| parent | d84a403bc0bbbb36c4a5833e00269eef6c4a91ae (diff) | |
| download | msgpack-python-e802abebf18f0126aaad0c7bdf8ba0042cb4602d.tar.gz | |
Merge pull request #79 from msgpack/newspec
[WIP] Newspec stage 2.
Diffstat (limited to 'msgpack/pack.h')
| -rw-r--r-- | msgpack/pack.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/msgpack/pack.h b/msgpack/pack.h index 001a0c1..a71c87b 100644 --- a/msgpack/pack.h +++ b/msgpack/pack.h @@ -71,6 +71,8 @@ static inline int msgpack_pack_raw(msgpack_packer* pk, size_t l); static inline int msgpack_pack_bin(msgpack_packer* pk, size_t l); static inline int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_t l); +static inline int msgpack_pack_ext(msgpack_packer* pk, int8_t typecode, size_t l); + static inline int msgpack_pack_write(msgpack_packer* pk, const char *data, size_t l) { char* buf = pk->buf; |
