CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/vncdll/winvnc/libjpeg/jconfig.h
Views: 11784
1
/* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
2
/* see jconfig.doc for explanations */
3
4
typedef short INT16;
5
typedef int INT32;
6
7
#define HAVE_PROTOTYPES
8
#define HAVE_UNSIGNED_CHAR
9
#define HAVE_UNSIGNED_SHORT
10
/* #define void char */
11
/* #define const */
12
#undef CHAR_IS_UNSIGNED
13
#define HAVE_STDDEF_H
14
#define HAVE_STDLIB_H
15
#undef NEED_BSD_STRINGS
16
#undef NEED_SYS_TYPES_H
17
#undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
18
#undef NEED_SHORT_EXTERNAL_NAMES
19
#undef INCOMPLETE_TYPES_BROKEN
20
21
/* Define "boolean" as unsigned char, not int, per Windows custom */
22
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
23
typedef unsigned char boolean;
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 */
33
34
#ifdef JPEG_CJPEG_DJPEG
35
36
#define BMP_SUPPORTED /* BMP image file format */
37
#define GIF_SUPPORTED /* GIF image file format */
38
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
39
#undef RLE_SUPPORTED /* Utah RLE image file format */
40
#define TARGA_SUPPORTED /* Targa image file format */
41
42
#define TWO_FILE_COMMANDLINE /* optional */
43
#define USE_SETMODE /* Microsoft has setmode() */
44
#undef NEED_SIGNAL_CATCHER
45
#undef DONT_USE_B_MODE
46
#undef PROGRESS_REPORT /* optional */
47
48
#endif /* JPEG_CJPEG_DJPEG */
49
50