diff options
author | Naoki INADA <inada-n@eagle> | 2009-07-09 13:41:04 +0900 |
---|---|---|
committer | Naoki INADA <inada-n@eagle> | 2009-07-09 13:41:04 +0900 |
commit | 77ca35a865bcc8cb9d7ed2fc8508cfbfb5b91dc6 (patch) | |
tree | b006ff9cf4bfee207e3f6df91266be9d75535d00 | |
parent | 2f095515735b136d04d7f05713505e97a3d25aa6 (diff) | |
download | msgpack-python-77ca35a865bcc8cb9d7ed2fc8508cfbfb5b91dc6.tar.gz |
Support MinGW.
-rw-r--r-- | msgpack/unpack_define.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/msgpack/unpack_define.h b/msgpack/unpack_define.h index 63668c2..d997569 100644 --- a/msgpack/unpack_define.h +++ b/msgpack/unpack_define.h @@ -45,8 +45,21 @@ extern "C" { #endif #endif +#ifdef __WIN32__ +static inline uint16_t msgpack_betoh16(uint16_t x) { + return ((x << 8) & 0xff00U) | + ((x >> 8) & 0x00ffU); +} +static inline uint32_t msgpack_betoh32(uint32_t x) { + return ((x << 24) & 0xff000000UL ) | + ((x << 8) & 0x00ff0000UL ) | + ((x >> 8) & 0x0000ff00UL ) | + ((x >> 24) & 0x000000ffUL ); +} +#else #define msgpack_betoh16(x) ntohs(x) #define msgpack_betoh32(x) ntohl(x) +#endif #ifdef __LITTLE_ENDIAN__ #if defined(__bswap_64) |