libartnet: new package added

Signed-off-by: Martijn Zilverschoon <martijn@friedzombie.com>
This commit is contained in:
Martijn Zilverschoon
2014-12-01 00:50:07 +01:00
parent 2b8aeb5002
commit 2cd02fd11d
2 changed files with 74 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
--- a/artnet/private.h
+++ b/artnet/private.h
@@ -100,7 +100,9 @@ extern uint16_t HIGH_BYTE;
#endif
// byte ordering macros
+#ifndef bswap_16
#define bswap_16(x) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))
+#endif
// htols : convert short from host to little endian order
#ifdef WIN32