diff Alc/ALc.c @ 3:96298d83959c

removed references to the removed backends
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 13:16:27 -0700
parents f9476ff7637e
children 99df34265b40
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.