ReactOS 0.4.15-dev-7924-g5949c20
jconfig.h
Go to the documentation of this file.
1#define HAVE_PROTOTYPES
2#define HAVE_UNSIGNED_CHAR
3#define HAVE_UNSIGNED_SHORT
4/* #define void char */
5/* #define const */
6#undef CHAR_IS_UNSIGNED
7#define HAVE_STDDEF_H
8#define HAVE_STDLIB_H
9#undef NEED_BSD_STRINGS
10#undef NEED_SYS_TYPES_H
11#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
12#undef NEED_SHORT_EXTERNAL_NAMES
13#undef INCOMPLETE_TYPES_BROKEN
14
15/* Define "boolean" as unsigned char, not enum, per Windows custom */
16#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
17typedef unsigned char boolean;
18#endif
19#ifndef FALSE /* in case these macros already exist */
20#define FALSE 0 /* values of boolean */
21#endif
22#ifndef TRUE
23#define TRUE 1
24#endif
25#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
26
27
28#ifdef JPEG_INTERNALS
29
30#undef RIGHT_SHIFT_IS_UNSIGNED
31
32#endif /* JPEG_INTERNALS */
unsigned char boolean
Definition: jconfig.h:17