mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 14:41:48 +00:00
fc9465caab
aside from the speed improvements, this also makes for nicer code in the renderer interaction with libjpeg, thanks to mem_dest support etc
13 lines
278 B
C
13 lines
278 B
C
#define VERSION "1.5.1"
|
|
#define BUILD "20161223"
|
|
#define PACKAGE_NAME "libjpeg-turbo"
|
|
|
|
#ifndef INLINE
|
|
#if defined(__GNUC__)
|
|
#define INLINE inline __attribute__((always_inline))
|
|
#elif defined(_MSC_VER)
|
|
#define INLINE __forceinline
|
|
#else
|
|
#define INLINE
|
|
#endif
|
|
#endif
|