-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.h
More file actions
executable file
·147 lines (99 loc) · 2.93 KB
/
Copy pathconfig.h
File metadata and controls
executable file
·147 lines (99 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#ifndef CONFIG_H
#define CONFIG_H
/* Define to the library version */
#define ALSOFT_VERSION "1.12.854"
#define AL_BUILD_LIBRARY
#define HAVE_GCC_VISIBILITY
/* Define if we have the Android backend */
#if defined(ANDROID)
//always
#define POST_FROYO
// Stereo only on Android back-ends
#define MAXCHANNELS 3
#define STEREO_ONLY 1
#if defined(POST_FROYO)
#define HAVE_OPENSLES 1
#endif
#define HAVE_AUDIOTRACK 1
// For throttling AlSource.c
#ifndef MAX_SOURCES_LOW
#define MAX_SOURCES_LOW 4
#endif
#ifndef MAX_SOURCES_START
#define MAX_SOURCES_START 8
#endif
#ifndef MAX_SOURCES_HIGH
#define MAX_SOURCES_HIGH 64
#endif
#endif
/* Define if we have the ALSA backend */
/* #cmakedefine HAVE_ALSA */
/* Define if we have the OSS backend */
/* #cmakedefine HAVE_OSS */
/* Define if we have the Solaris backend */
/* #cmakedefine HAVE_SOLARIS */
/* Define if we have the DSound backend */
/* #cmakedefine HAVE_DSOUND */
/* Define if we have the Wave Writer backend */
/* #cmakedefine HAVE_WAVE */
/* Define if we have the Windows Multimedia backend */
/* #cmakedefine HAVE_WINMM */
/* Define if we have the PortAudio backend */
/* #cmakedefine HAVE_PORTAUDIO */
/* Define if we have the PulseAudio backend */
/* #cmakedefine HAVE_PULSEAUDIO */
/* Define if we have dlfcn.h */
#define HAVE_DLFCN_H 1
/* Define if we have the stat function */
#define HAVE_STAT 1
/* Define if we have the powf function */
#define HAVE_POWF 1
/* Define if we have the sqrtf function */
#define HAVE_SQRTF 1
/* Define if we have the acosf function */
#define HAVE_ACOSF 1
/* Define if we have the atanf function */
#define HAVE_ATANF 1
/* Define if we have the fabsf function */
#define HAVE_FABSF 1
/* Define if we have the strtof function */
#define HAVE_STRTOF 1
/* Define if we have stdint.h */
#define HAVE_STDINT_H 1
/* Define if we have the __int64 type */
/* #cmakedefine HAVE___INT64 */
#ifdef HXCPP_ARM64
/* Define to the size of a void pointer type */
#define SIZEOF_VOIDP 8
#else
#ifdef HXCPP_X86_64
/* Define to the size of a void pointer type */
#define SIZEOF_VOIDP 8
#else
/* Define to the size of a void pointer type */
#define SIZEOF_VOIDP 4
#endif
#endif
/* Define to the size of a long int type */
#define SIZEOF_LONG 4
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define to the size of an unsigned int type */
#define SIZEOF_UINT 4
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR 1
/* Define if we have GCC's format attribute */
#define HAVE_GCC_FORMAT 1
/* Define if we have pthread_np.h */
/* #cmakedefine HAVE_PTHREAD_NP_H */
/* Define if we have float.h */
/* #cmakedefine HAVE_FLOAT_H */
/* Define if we have fenv.h */
#define HAVE_FENV_H 1
/* Define if we have fesetround() */
/* #cmakedefine HAVE_FESETROUND */
/* Define if we have _controlfp() */
/* #cmakedefine HAVE__CONTROLFP */
/* Define if we have pthread_setschedparam() */
#define HAVE_PTHREAD_SETSCHEDPARAM 1
#endif