Move ALC_ENUMERATE_ALL_EXT tokens to alext.h
[openal-soft.git] / include / AL / alext.h
blobc93f093a152d636396b0e18cb3a9335ea0323f8b
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 2008 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #ifndef AL_ALEXT_H
22 #define AL_ALEXT_H
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
28 #ifndef AL_EXT_float32
29 #define AL_EXT_float32 1
30 #define AL_FORMAT_MONO_FLOAT32 0x10010
31 #define AL_FORMAT_STEREO_FLOAT32 0x10011
32 #endif
34 #ifndef AL_LOKI_WAVE_format
35 #define AL_LOKI_WAVE_format 1
36 #define AL_FORMAT_WAVE_EXT 0x10002
37 #endif
39 #ifndef AL_LOKI_quadriphonic
40 #define AL_LOKI_quadriphonic 1
41 #define AL_FORMAT_QUAD8_LOKI 0x10004
42 #define AL_FORMAT_QUAD16_LOKI 0x10005
43 #endif
45 #ifndef ALC_LOKI_audio_channel
46 #define ALC_LOKI_audio_channel 1
47 #define ALC_CHAN_MAIN_LOKI 0x500001
48 #define ALC_CHAN_PCM_LOKI 0x500002
49 #define ALC_CHAN_CD_LOKI 0x500003
50 #endif
52 #ifndef ALC_ENUMERATE_ALL_EXT
53 #define ALC_ENUMERATE_ALL_EXT 1
54 #define ALC_DEFAULT_ALL_DEVICES_SPECIFIER 0x1012
55 #define ALC_ALL_DEVICES_SPECIFIER 0x1013
56 #endif
58 #ifndef AL_EXT_MCFORMATS
59 #define AL_EXT_MCFORMATS 1
60 #define AL_FORMAT_QUAD8 0x1204
61 #define AL_FORMAT_QUAD16 0x1205
62 #define AL_FORMAT_QUAD32 0x1206
63 #define AL_FORMAT_REAR8 0x1207
64 #define AL_FORMAT_REAR16 0x1208
65 #define AL_FORMAT_REAR32 0x1209
66 #define AL_FORMAT_51CHN8 0x120A
67 #define AL_FORMAT_51CHN16 0x120B
68 #define AL_FORMAT_51CHN32 0x120C
69 #define AL_FORMAT_61CHN8 0x120D
70 #define AL_FORMAT_61CHN16 0x120E
71 #define AL_FORMAT_61CHN32 0x120F
72 #define AL_FORMAT_71CHN8 0x1210
73 #define AL_FORMAT_71CHN16 0x1211
74 #define AL_FORMAT_71CHN32 0x1212
75 #endif
77 #ifndef AL_EXT_IMA4
78 #define AL_EXT_IMA4 1
79 #define AL_FORMAT_MONO_IMA4 0x1300
80 #define AL_FORMAT_STEREO_IMA4 0x1301
81 #endif
83 #ifdef __cplusplus
85 #endif
87 #endif