mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
c, c++ binding: catch up with ruby binding
git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@89 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
This commit is contained in:
parent
8f3444c081
commit
adba617f45
3 changed files with 165 additions and 155 deletions
2
c/pack.h
2
c/pack.h
|
|
@ -39,6 +39,8 @@ void msgpack_pack_free(msgpack_pack_t* ctx);
|
|||
|
||||
void msgpack_pack_int(msgpack_pack_t* ctx, int d);
|
||||
void msgpack_pack_unsigned_int(msgpack_pack_t* ctx, unsigned int d);
|
||||
void msgpack_pack_long(msgpack_pack_t* ctx, long d);
|
||||
void msgpack_pack_unsigned_long(msgpack_pack_t* ctx, unsigned long d);
|
||||
void msgpack_pack_uint8(msgpack_pack_t* ctx, uint8_t d);
|
||||
void msgpack_pack_uint16(msgpack_pack_t* ctx, uint16_t d);
|
||||
void msgpack_pack_uint32(msgpack_pack_t* ctx, uint32_t d);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue