msgpack.h 526 B

123456789101112131415161718192021222324
  1. /*
  2. * MessagePack for C
  3. *
  4. * Copyright (C) 2008-2009 FURUHASHI Sadayuki
  5. *
  6. * Distributed under the Boost Software License, Version 1.0.
  7. * (See accompanying file LICENSE_1_0.txt or copy at
  8. * http://www.boost.org/LICENSE_1_0.txt)
  9. */
  10. /**
  11. * @defgroup msgpack MessagePack C
  12. * @{
  13. * @}
  14. */
  15. #include "msgpack/util.h"
  16. #include "msgpack/object.h"
  17. #include "msgpack/zone.h"
  18. #include "msgpack/pack.h"
  19. #include "msgpack/unpack.h"
  20. #include "msgpack/sbuffer.h"
  21. #include "msgpack/vrefbuffer.h"
  22. #include "msgpack/version.h"