summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731>2009-02-15 09:10:00 +0000
committerfrsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731>2009-02-15 09:10:00 +0000
commitadba617f45f89cacbd23667744d0cc17668ecdda (patch)
tree9f4f1de828838a7537d06b3e6c60d325aecf4484 /c
parent8f3444c08141520a0977adce643ce0eb7f0324cd (diff)
downloadmsgpack-python-adba617f45f89cacbd23667744d0cc17668ecdda.tar.gz
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
Diffstat (limited to 'c')
-rw-r--r--c/pack.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c/pack.h b/c/pack.h
index ec0683e..fac642f 100644
--- a/c/pack.h
+++ b/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);