diff options
| author | UENISHI Kota <kuenishi+github@gmail.com> | 2010-06-03 00:14:19 +0900 |
|---|---|---|
| committer | UENISHI Kota <kuenishi+github@gmail.com> | 2010-06-03 00:14:19 +0900 |
| commit | 8ecaf7ad4ce4185e81fae775332282ed551fa886 (patch) | |
| tree | 68b7fb5c875f5620033ac8fa4e046bfdd51f78d0 /cpp/src/msgpack/pack.h | |
| parent | 49f3872d047624b1995b8c60edec8bad35429fd3 (diff) | |
| parent | d4049fe593ae4465e7a258d138c2166571a0f1a7 (diff) | |
| download | msgpack-python-8ecaf7ad4ce4185e81fae775332282ed551fa886.tar.gz | |
Merge branch 'master' of ssh://github.com/msgpack/msgpack
Diffstat (limited to 'cpp/src/msgpack/pack.h')
| -rw-r--r-- | cpp/src/msgpack/pack.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp/src/msgpack/pack.h b/cpp/src/msgpack/pack.h index 1525e0f..1252895 100644 --- a/cpp/src/msgpack/pack.h +++ b/cpp/src/msgpack/pack.h @@ -27,6 +27,19 @@ extern "C" { #endif +/** + * @defgroup msgpack_buffer Buffers + * @ingroup msgpack + * @{ + * @} + */ + +/** + * @defgroup msgpack_pack Serializer + * @ingroup msgpack + * @{ + */ + typedef int (*msgpack_packer_write)(void* data, const char* buf, unsigned int len); typedef struct msgpack_packer { @@ -74,6 +87,8 @@ static int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_t l); int msgpack_pack_object(msgpack_packer* pk, msgpack_object d); +/** @} */ + #define msgpack_pack_inline_func(name) \ inline int msgpack_pack ## name |
