jconfig.h.win.in 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. #define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
  2. #define LIBJPEG_TURBO_VERSION @VERSION@
  3. #define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
  4. #cmakedefine C_ARITH_CODING_SUPPORTED
  5. #cmakedefine D_ARITH_CODING_SUPPORTED
  6. #cmakedefine MEM_SRCDST_SUPPORTED
  7. #cmakedefine WITH_SIMD
  8. #define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
  9. #define HAVE_STDDEF_H
  10. #define HAVE_STDLIB_H
  11. #undef NEED_SYS_TYPES_H
  12. #undef NEED_BSD_STRINGS
  13. #define HAVE_UNSIGNED_CHAR
  14. #define HAVE_UNSIGNED_SHORT
  15. #undef INCOMPLETE_TYPES_BROKEN
  16. #undef RIGHT_SHIFT_IS_UNSIGNED
  17. /* Define "boolean" as unsigned char, not int, per Windows custom */
  18. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  19. typedef unsigned char boolean;
  20. #endif
  21. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  22. /* Define "INT32" as int, not long, per Windows custom */
  23. #if !(defined(_BASETSD_H_) || defined(_BASETSD_H)) /* don't conflict if basetsd.h already read */
  24. typedef short INT16;
  25. typedef signed int INT32;
  26. #endif
  27. #define XMD_H /* prevent jmorecfg.h from redefining it */