openshot-audio  0.1.2
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 #define HAVE_STDLIB_H
24 #undef NEED_BSD_STRINGS
25 #undef NEED_SYS_TYPES_H
26 #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
27 #undef NEED_SHORT_EXTERNAL_NAMES
28 #undef INCOMPLETE_TYPES_BROKEN
29 
30 /* Define "boolean" as unsigned char, not int, per Windows custom */
31 #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
32 typedef unsigned char boolean;
33 #endif
34 #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
35 
36 
37 #ifdef JPEG_INTERNALS
38 
39 #undef RIGHT_SHIFT_IS_UNSIGNED
40 
41 #endif /* JPEG_INTERNALS */
42 
43 #ifdef JPEG_CJPEG_DJPEG
44 
45 #define BMP_SUPPORTED /* BMP image file format */
46 #define GIF_SUPPORTED /* GIF image file format */
47 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
48 #undef RLE_SUPPORTED /* Utah RLE image file format */
49 #define TARGA_SUPPORTED /* Targa image file format */
50 
51 #define TWO_FILE_COMMANDLINE /* optional */
52 #define USE_SETMODE /* Microsoft has setmode() */
53 #undef NEED_SIGNAL_CATCHER
54 #undef DONT_USE_B_MODE
55 #undef PROGRESS_REPORT /* optional */
56 
57 #endif /* JPEG_CJPEG_DJPEG */
unsigned char boolean
Definition: jconfig.h:32