Ticket #5980: MythTV-bswap.h.patch
File MythTV-bswap.h.patch, 547 bytes (added by , 17 years ago) |
---|
-
libs/libmythdvdnav/bswap.h
71 71 * functionality! 72 72 */ 73 73 74 #elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined( WIN32) || defined(__CYGWIN__)74 #elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(_WIN32) || defined(__CYGWIN__) 75 75 #define B2N_16(x) \ 76 76 x = ((((x) & 0xff00) >> 8) | \ 77 77 (((x) & 0x00ff) << 8))