1 | /* This file is automatically generated by configure */
|
---|
2 | /* DO NOT EDIT MANUALLY */
|
---|
3 |
|
---|
4 | #ifndef CONFIG_H
|
---|
5 | #define CONFIG_H
|
---|
6 |
|
---|
7 |
|
---|
8 | #define SCUMM_LITTLE_ENDIAN
|
---|
9 | #undef SCUMM_BIG_ENDIAN
|
---|
10 | #define SCUMM_64BITS
|
---|
11 | #define SCUMM_NEED_ALIGNMENT
|
---|
12 | #undef USE_ELF_LOADER
|
---|
13 | #undef DYNAMIC_MODULES
|
---|
14 | #define USE_MT32EMU
|
---|
15 | #define USE_RGB_COLOR
|
---|
16 | #define USE_SAVEGAME_TIMESTAMP
|
---|
17 | #define USE_SCALERS
|
---|
18 | #define USE_HQ_SCALERS
|
---|
19 | #define USE_VORBIS
|
---|
20 | #undef USE_TREMOR
|
---|
21 | #define USE_FLAC
|
---|
22 | #define USE_MAD
|
---|
23 | #undef USE_ALSA
|
---|
24 | #undef USE_PNG
|
---|
25 | #define USE_THEORADEC
|
---|
26 | #define USE_FAAD
|
---|
27 | #undef USE_SEQ_MIDI
|
---|
28 | #define USE_SNDIO
|
---|
29 | #define USE_TIMIDITY
|
---|
30 | #define USE_ZLIB
|
---|
31 | #undef USE_FLUIDSYNTH
|
---|
32 | #undef USE_READLINE
|
---|
33 | #undef USE_TEXT_CONSOLE_FOR_DEBUGGER
|
---|
34 | #undef USE_TASKBAR_UNITY
|
---|
35 | #define USE_FREETYPE2
|
---|
36 | #undef USE_OPENGL
|
---|
37 | #undef USE_GLES
|
---|
38 | #undef USE_NASM
|
---|
39 | #undef ENABLE_VKEYBD
|
---|
40 | #undef ENABLE_KEYMAPPER
|
---|
41 | #define USE_TRANSLATION
|
---|
42 | #define USE_DETECTLANG
|
---|
43 | #define USE_TASKBAR
|
---|
44 | #define USE_BINK
|
---|
45 | #undef USE_UPDATES
|
---|
46 | /* #define TAINTED_BUILD */
|
---|
47 |
|
---|
48 | /* Data types */
|
---|
49 | typedef unsigned char byte;
|
---|
50 | typedef unsigned int uint;
|
---|
51 | typedef unsigned char uint8;
|
---|
52 | typedef unsigned short uint16;
|
---|
53 | typedef unsigned int uint32;
|
---|
54 | typedef signed char int8;
|
---|
55 | typedef signed short int16;
|
---|
56 | typedef signed int int32;
|
---|
57 |
|
---|
58 | /* 64-bit stuff */
|
---|
59 | typedef signed long int64;
|
---|
60 | #if defined(__APPLE__) && !defined(__ppc__)
|
---|
61 | #ifndef _UINT64
|
---|
62 | #define _UINT64
|
---|
63 | typedef unsigned long uint64;
|
---|
64 | #endif
|
---|
65 | #else
|
---|
66 | typedef unsigned long uint64;
|
---|
67 | #endif
|
---|
68 |
|
---|
69 | #endif /* CONFIG_H */
|
---|