Changeset 1374 for portaudio/branches
- Timestamp:
- 03/18/08 10:55:04 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/src/os/unix/pa_unix_hostapis.c
r1353 r1374 53 53 PaError PaSkeleton_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); 54 54 55 /** Note that ALSA is placed before OSS so that the latter is preferred over the 56 * latter on Linux. 57 */ 55 58 56 59 PaUtilHostApiInitializer *paHostApiInitializers[] = 57 60 { 61 #ifdef PA_USE_ALSA 62 PaAlsa_Initialize, 63 #endif 64 58 65 #ifdef PA_USE_OSS 59 66 PaOSS_Initialize, 60 #endif61 62 #ifdef PA_USE_ALSA63 PaAlsa_Initialize,64 67 #endif 65 68
