jconfigint.h 265 B

12345678910111213
  1. #define VERSION "1.5.1"
  2. #define BUILD "20170908"
  3. #define PACKAGE_NAME "libjpeg-turbo"
  4. #ifndef INLINE
  5. #if defined(__GNUC__)
  6. #define INLINE inline __attribute__((always_inline))
  7. #elif defined(_MSC_VER)
  8. #define INLINE __forceinline
  9. #else
  10. #define INLINE
  11. #endif
  12. #endif