mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
lang/c/msgpack: removed string type
git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@54 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
This commit is contained in:
parent
f41c20a250
commit
249d3e9c90
9 changed files with 29 additions and 44 deletions
|
|
@ -71,11 +71,8 @@ static inline void* msgpack_unpack_map_start(msgpack_unpack_t* x, unsigned int n
|
|||
static inline void msgpack_unpack_map_item(msgpack_unpack_t* x, void* c, void* k, void* v)
|
||||
{ x->callback.unpack_map_item(x->data, c, k, v); }
|
||||
|
||||
static inline void* msgpack_unpack_string(msgpack_unpack_t* x, const void* b, size_t l)
|
||||
{ return x->callback.unpack_string(x->data, b, l); }
|
||||
|
||||
static inline void* msgpack_unpack_raw(msgpack_unpack_t* x, const void* b, size_t l)
|
||||
{ return x->callback.unpack_raw(x->data, b, l); }
|
||||
static inline void* msgpack_unpack_raw(msgpack_unpack_t* x, const void* b, const void* p, size_t l)
|
||||
{ return x->callback.unpack_raw(x->data, b, p, l); }
|
||||
|
||||
|
||||
#include "msgpack/unpack/inline_impl.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue