changeset 3:96298d83959c

removed references to the removed backends
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 13:16:27 -0700
parents 82b9267a3e19
children ed256a687dfe
files Alc/ALc.c OpenAL32/Include/alMain.h
diffstat 2 files changed, 1 insertions(+), 73 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/Alc/ALc.c	Tue Oct 25 13:11:31 2011 -0700
     1.2 +++ b/Alc/ALc.c	Tue Oct 25 13:16:27 2011 -0700
     1.3 @@ -43,44 +43,7 @@
     1.4  
     1.5  #define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
     1.6  static struct BackendInfo BackendList[] = {
     1.7 -#ifdef HAVE_PULSEAUDIO
     1.8 -    { "pulse", alc_pulse_init, alc_pulse_deinit, alc_pulse_probe, EmptyFuncs },
     1.9 -#endif
    1.10 -#ifdef HAVE_ALSA
    1.11 -    { "alsa", alc_alsa_init, alc_alsa_deinit, alc_alsa_probe, EmptyFuncs },
    1.12 -#endif
    1.13 -#ifdef HAVE_COREAUDIO
    1.14 -    { "core", alc_ca_init, alc_ca_deinit, alc_ca_probe, EmptyFuncs },
    1.15 -#endif
    1.16 -#ifdef HAVE_OSS
    1.17 -    { "oss", alc_oss_init, alc_oss_deinit, alc_oss_probe, EmptyFuncs },
    1.18 -#endif
    1.19 -#ifdef HAVE_SOLARIS
    1.20 -    { "solaris", alc_solaris_init, alc_solaris_deinit, alc_solaris_probe, EmptyFuncs },
    1.21 -#endif
    1.22 -#ifdef HAVE_SNDIO
    1.23 -    { "sndio", alc_sndio_init, alc_sndio_deinit, alc_sndio_probe, EmptyFuncs },
    1.24 -#endif
    1.25 -#ifdef HAVE_MMDEVAPI
    1.26 -    { "mmdevapi", alcMMDevApiInit, alcMMDevApiDeinit, alcMMDevApiProbe, EmptyFuncs },
    1.27 -#endif
    1.28 -#ifdef HAVE_DSOUND
    1.29 -    { "dsound", alcDSoundInit, alcDSoundDeinit, alcDSoundProbe, EmptyFuncs },
    1.30 -#endif
    1.31 -#ifdef HAVE_WINMM
    1.32 -    { "winmm", alcWinMMInit, alcWinMMDeinit, alcWinMMProbe, EmptyFuncs },
    1.33 -#endif
    1.34 -#ifdef HAVE_PORTAUDIO
    1.35 -    { "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs },
    1.36 -#endif
    1.37 -#ifdef HAVE_OPENSL
    1.38 -    { "opensl", alc_opensl_init, alc_opensl_deinit, alc_opensl_probe, EmptyFuncs },
    1.39 -#endif
    1.40 -
    1.41      { "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs },
    1.42 -#ifdef HAVE_WAVE
    1.43 -    { "wave", alc_wave_init, alc_wave_deinit, alc_wave_probe, EmptyFuncs },
    1.44 -#endif
    1.45      { "send", alc_send_init, alc_send_deinit, alc_send_probe, EmptyFuncs },
    1.46      // this entry is so that the list is terminated by a "null" object,
    1.47      // and helps things to tell when they've reached the end of the list.
     2.1 --- a/OpenAL32/Include/alMain.h	Tue Oct 25 13:11:31 2011 -0700
     2.2 +++ b/OpenAL32/Include/alMain.h	Tue Oct 25 13:16:27 2011 -0700
     2.3 @@ -291,42 +291,7 @@
     2.4      BackendFuncs Funcs;
     2.5  };
     2.6  
     2.7 -ALCboolean alc_alsa_init(BackendFuncs *func_list);
     2.8 -void alc_alsa_deinit(void);
     2.9 -void alc_alsa_probe(enum DevProbe type);
    2.10 -ALCboolean alc_oss_init(BackendFuncs *func_list);
    2.11 -void alc_oss_deinit(void);
    2.12 -void alc_oss_probe(enum DevProbe type);
    2.13 -ALCboolean alc_solaris_init(BackendFuncs *func_list);
    2.14 -void alc_solaris_deinit(void);
    2.15 -void alc_solaris_probe(enum DevProbe type);
    2.16 -ALCboolean alc_sndio_init(BackendFuncs *func_list);
    2.17 -void alc_sndio_deinit(void);
    2.18 -void alc_sndio_probe(enum DevProbe type);
    2.19 -ALCboolean alcMMDevApiInit(BackendFuncs *func_list);
    2.20 -void alcMMDevApiDeinit(void);
    2.21 -void alcMMDevApiProbe(enum DevProbe type);
    2.22 -ALCboolean alcDSoundInit(BackendFuncs *func_list);
    2.23 -void alcDSoundDeinit(void);
    2.24 -void alcDSoundProbe(enum DevProbe type);
    2.25 -ALCboolean alcWinMMInit(BackendFuncs *FuncList);
    2.26 -void alcWinMMDeinit(void);
    2.27 -void alcWinMMProbe(enum DevProbe type);
    2.28 -ALCboolean alc_pa_init(BackendFuncs *func_list);
    2.29 -void alc_pa_deinit(void);
    2.30 -void alc_pa_probe(enum DevProbe type);
    2.31 -ALCboolean alc_wave_init(BackendFuncs *func_list);
    2.32 -void alc_wave_deinit(void);
    2.33 -void alc_wave_probe(enum DevProbe type);
    2.34 -ALCboolean alc_pulse_init(BackendFuncs *func_list);
    2.35 -void alc_pulse_deinit(void);
    2.36 -void alc_pulse_probe(enum DevProbe type);
    2.37 -ALCboolean alc_ca_init(BackendFuncs *func_list);
    2.38 -void alc_ca_deinit(void);
    2.39 -void alc_ca_probe(enum DevProbe type);
    2.40 -ALCboolean alc_opensl_init(BackendFuncs *func_list);
    2.41 -void alc_opensl_deinit(void);
    2.42 -void alc_opensl_probe(enum DevProbe type);
    2.43 +
    2.44  ALCboolean alc_null_init(BackendFuncs *func_list);
    2.45  void alc_null_deinit(void);
    2.46  void alc_null_probe(enum DevProbe type);