messagepack implementation for embedded systems (mbed / arduino)

Dependents:   hello_message_pack

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pack_define.h Source File

pack_define.h

00001 /*
00002  * MessagePack unpacking routine template
00003  *
00004  * Copyright (C) 2008-2010 FURUHASHI Sadayuki
00005  *
00006  *    Distributed under the Boost Software License, Version 1.0.
00007  *    (See accompanying file LICENSE_1_0.txt or copy at
00008  *    http://www.boost.org/LICENSE_1_0.txt)
00009  */
00010 #ifndef MSGPACK_PACK_DEFINE_H
00011 #define MSGPACK_PACK_DEFINE_H
00012 
00013 #include "sysdep.h"
00014 #include <limits.h>
00015 #include <string.h>
00016 
00017 #endif /* msgpack/pack_define.h */