/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 9x or NT. */1/* This file also works for Borland C++ 32-bit (bcc32) on Windows 9x or NT. */2/* see jconfig.txt for explanations */34#define HAVE_PROTOTYPES5#define HAVE_UNSIGNED_CHAR6#define HAVE_UNSIGNED_SHORT7/* #define void char */8/* #define const */9#undef CHAR_IS_UNSIGNED10#define HAVE_STDDEF_H11#define HAVE_STDLIB_H12#undef NEED_BSD_STRINGS13#undef NEED_SYS_TYPES_H14#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */15#undef NEED_SHORT_EXTERNAL_NAMES16#undef INCOMPLETE_TYPES_BROKEN1718/* Define "boolean" as unsigned char, not enum, per Windows custom */19#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */20typedef unsigned char boolean;21#endif22#ifndef FALSE /* in case these macros already exist */23#define FALSE 0 /* values of boolean */24#endif25#ifndef TRUE26#define TRUE 127#endif28#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */293031#ifdef JPEG_INTERNALS3233#undef RIGHT_SHIFT_IS_UNSIGNED3435#endif /* JPEG_INTERNALS */3637#ifdef JPEG_CJPEG_DJPEG3839#define BMP_SUPPORTED /* BMP image file format */40#define GIF_SUPPORTED /* GIF image file format */41#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */42#undef RLE_SUPPORTED /* Utah RLE image file format */43#define TARGA_SUPPORTED /* Targa image file format */4445#define TWO_FILE_COMMANDLINE /* optional */46#define USE_SETMODE /* Microsoft has setmode() */47#undef NEED_SIGNAL_CATCHER48#undef DONT_USE_B_MODE49#undef PROGRESS_REPORT /* optional */5051#endif /* JPEG_CJPEG_DJPEG */525354