3dphotoshoot

annotate libs/libjpeg/jconfig.h @ 14:06dc8b9b4f89

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