LMMS
Loading...
Searching...
No Matches
jconfig.h
Go to the documentation of this file.
1/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
2/* see jconfig.doc for explanations */
3
4// disable all the warnings under MSVC
5#ifdef _MSC_VER
6#pragma warning (disable: 4996 4267 4100 4127 4702 4244)
7#endif
8
9#ifdef __BORLANDC__
10#pragma warn -8057
11#pragma warn -8019
12#pragma warn -8004
13#pragma warn -8008
14#endif
15
16#define HAVE_PROTOTYPES
17#define HAVE_UNSIGNED_CHAR
18#define HAVE_UNSIGNED_SHORT
19/* #define void char */
20/* #define const */
21#undef CHAR_IS_UNSIGNED
22#define HAVE_STDDEF_H
23#ifndef HAVE_STDLIB_H
24 #define HAVE_STDLIB_H
25#endif
26#undef NEED_BSD_STRINGS
27#undef NEED_SYS_TYPES_H
28#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
29#undef NEED_SHORT_EXTERNAL_NAMES
30#undef INCOMPLETE_TYPES_BROKEN
31
32/* Define "boolean" as unsigned char, not int, per Windows custom */
33#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
34typedef unsigned char boolean;
35#endif
36#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
37
38
39#ifdef JPEG_INTERNALS
40
41#undef RIGHT_SHIFT_IS_UNSIGNED
42
43#endif /* JPEG_INTERNALS */
44
45#ifdef JPEG_CJPEG_DJPEG
46
47#define BMP_SUPPORTED /* BMP image file format */
48#define GIF_SUPPORTED /* GIF image file format */
49#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
50#undef RLE_SUPPORTED /* Utah RLE image file format */
51#define TARGA_SUPPORTED /* Targa image file format */
52
53#define TWO_FILE_COMMANDLINE /* optional */
54#define USE_SETMODE /* Microsoft has setmode() */
55#undef NEED_SIGNAL_CATCHER
56#undef DONT_USE_B_MODE
57#undef PROGRESS_REPORT /* optional */
58
59#endif /* JPEG_CJPEG_DJPEG */
unsigned char boolean
Definition jconfig.h:34