dbf-halloween2015

annotate libs/libjpeg/jconfig.h @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
rev   line source
nuclear@1 1 /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
nuclear@1 2 /* see jconfig.doc for explanations */
nuclear@1 3
nuclear@1 4 #define HAVE_PROTOTYPES
nuclear@1 5 #define HAVE_UNSIGNED_CHAR
nuclear@1 6 #define HAVE_UNSIGNED_SHORT
nuclear@1 7 /* #define void char */
nuclear@1 8 /* #define const */
nuclear@1 9 #undef CHAR_IS_UNSIGNED
nuclear@1 10 #define HAVE_STDDEF_H
nuclear@1 11 #define HAVE_STDLIB_H
nuclear@1 12 #undef NEED_BSD_STRINGS
nuclear@1 13 #undef NEED_SYS_TYPES_H
nuclear@1 14 #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
nuclear@1 15 #undef NEED_SHORT_EXTERNAL_NAMES
nuclear@1 16 #undef INCOMPLETE_TYPES_BROKEN
nuclear@1 17
nuclear@1 18 /* Define "boolean" as unsigned char, not int, per Windows custom */
nuclear@1 19 #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
nuclear@1 20 typedef unsigned char boolean;
nuclear@1 21 #endif
nuclear@1 22 #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
nuclear@1 23
nuclear@1 24
nuclear@1 25 #ifdef JPEG_INTERNALS
nuclear@1 26
nuclear@1 27 #undef RIGHT_SHIFT_IS_UNSIGNED
nuclear@1 28
nuclear@1 29 #endif /* JPEG_INTERNALS */
nuclear@1 30
nuclear@1 31 #ifdef JPEG_CJPEG_DJPEG
nuclear@1 32
nuclear@1 33 #define BMP_SUPPORTED /* BMP image file format */
nuclear@1 34 #define GIF_SUPPORTED /* GIF image file format */
nuclear@1 35 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
nuclear@1 36 #undef RLE_SUPPORTED /* Utah RLE image file format */
nuclear@1 37 #define TARGA_SUPPORTED /* Targa image file format */
nuclear@1 38
nuclear@1 39 #define TWO_FILE_COMMANDLINE /* optional */
nuclear@1 40 #define USE_SETMODE /* Microsoft has setmode() */
nuclear@1 41 #undef NEED_SIGNAL_CATCHER
nuclear@1 42 #undef DONT_USE_B_MODE
nuclear@1 43 #undef PROGRESS_REPORT /* optional */
nuclear@1 44
nuclear@1 45 #endif /* JPEG_CJPEG_DJPEG */