Changeset 133 for smplayer/vendor/current/zlib/zutil.h
- Timestamp:
- Oct 24, 2012, 7:56:20 PM (13 years ago)
- Location:
- smplayer/vendor/current/zlib
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/zlib/zutil.h
r121 r133 1 1 /* zutil.h -- internal interface and configuration of the compression library 2 * Copyright (C) 1995-201 1Jean-loup Gailly.2 * Copyright (C) 1995-2012 Jean-loup Gailly. 3 3 * For conditions of distribution and use, see copyright notice in zlib.h 4 4 */ … … 14 14 #define ZUTIL_H 15 15 16 #if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) && !defined(NO_VIZ)16 #ifdef HAVE_HIDDEN 17 17 # define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) 18 18 #else … … 246 246 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);} 247 247 248 /* Reverse the bytes in a 32-bit value */ 249 #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ 250 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) 251 248 252 #endif /* ZUTIL_H */
Note:
See TracChangeset
for help on using the changeset viewer.