istereo

annotate libs/libjpeg/jconfig.h @ 26:862a3329a8f0

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