pack_define.h 432 B

123456789101112131415161718
  1. /*
  2. * MessagePack unpacking routine template
  3. *
  4. * Copyright (C) 2008-2010 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. #ifndef MSGPACK_PACK_DEFINE_H
  11. #define MSGPACK_PACK_DEFINE_H
  12. #include "msgpack/sysdep.h"
  13. #include <limits.h>
  14. #include <string.h>
  15. #endif /* msgpack/pack_define.h */