Home | History | Annotate | Download | only in win
      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 
      5 #cmakedefine C_ARITH_CODING_SUPPORTED
      6 #cmakedefine D_ARITH_CODING_SUPPORTED
      7 #cmakedefine MEM_SRCDST_SUPPORTED
      8 #cmakedefine WITH_SIMD
      9 
     10 #define BITS_IN_JSAMPLE  @BITS_IN_JSAMPLE@      /* use 8 or 12 */
     11 
     12 #define HAVE_STDDEF_H
     13 #define HAVE_STDLIB_H
     14 #undef NEED_SYS_TYPES_H
     15 #undef NEED_BSD_STRINGS
     16 
     17 #define HAVE_UNSIGNED_CHAR
     18 #define HAVE_UNSIGNED_SHORT
     19 #undef INCOMPLETE_TYPES_BROKEN
     20 #undef RIGHT_SHIFT_IS_UNSIGNED
     21 #undef __CHAR_UNSIGNED__
     22 
     23 /* Define "boolean" as unsigned char, not int, per Windows custom */
     24 #ifndef __RPCNDR_H__            /* don't conflict if rpcndr.h already read */
     25 typedef unsigned char boolean;
     26 #endif
     27 #define HAVE_BOOLEAN            /* prevent jmorecfg.h from redefining it */
     28 
     29 /* Define "INT32" as int, not long, per Windows custom */
     30 #if !(defined(_BASETSD_H_) || defined(_BASETSD_H))   /* don't conflict if basetsd.h already read */
     31 typedef short INT16;
     32 typedef signed int INT32;
     33 #endif
     34 #define XMD_H                   /* prevent jmorecfg.h from redefining it */
     35