jconfig.vc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
  2. /* see jconfig.doc for explanations */
  3. #define HAVE_PROTOTYPES
  4. #define HAVE_UNSIGNED_CHAR
  5. #define HAVE_UNSIGNED_SHORT
  6. /* #define void char */
  7. /* #define const */
  8. #undef CHAR_IS_UNSIGNED
  9. #define HAVE_STDDEF_H
  10. #define HAVE_STDLIB_H
  11. #undef NEED_BSD_STRINGS
  12. #undef NEED_SYS_TYPES_H
  13. #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
  14. #undef NEED_SHORT_EXTERNAL_NAMES
  15. #undef INCOMPLETE_TYPES_BROKEN
  16. /* Define "boolean" as unsigned char, not int, per Windows custom */
  17. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  18. typedef unsigned char boolean;
  19. #endif
  20. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  21. #ifdef JPEG_INTERNALS
  22. #undef RIGHT_SHIFT_IS_UNSIGNED
  23. #endif /* JPEG_INTERNALS */
  24. #ifdef JPEG_CJPEG_DJPEG
  25. #define BMP_SUPPORTED /* BMP image file format */
  26. #define GIF_SUPPORTED /* GIF image file format */
  27. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  28. #undef RLE_SUPPORTED /* Utah RLE image file format */
  29. #define TARGA_SUPPORTED /* Targa image file format */
  30. #define TWO_FILE_COMMANDLINE /* optional */
  31. #define USE_SETMODE /* Microsoft has setmode() */
  32. #undef NEED_SIGNAL_CATCHER
  33. #undef DONT_USE_B_MODE
  34. #undef PROGRESS_REPORT /* optional */
  35. #endif /* JPEG_CJPEG_DJPEG */