summaryrefslogtreecommitdiff
path: root/cpp/src/msgpack/pack.h
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-06-01 08:43:30 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-06-01 08:43:30 +0900
commit3d3af3284e3a5fd03395b6694fd745491509aa64 (patch)
treee7d5cac03eceb078b6c7ebf7acdb356481cd4bd5 /cpp/src/msgpack/pack.h
parenteabcf15790a774ce718ae1738c6ddb407e1cd279 (diff)
downloadmsgpack-python-3d3af3284e3a5fd03395b6694fd745491509aa64.tar.gz
cpp: adds Doxyfile
Diffstat (limited to 'cpp/src/msgpack/pack.h')
-rw-r--r--cpp/src/msgpack/pack.h15
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