Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

27
dll/amp/audioIO.c Normal file
View File

@@ -0,0 +1,27 @@
#ifdef OS_AIX
#include "audioIO_AIX.c"
#endif
#ifdef OS_Linux
#include "audioIO_Linux.c"
#endif
#ifdef OS_BSD
#include "audioIO_Linux.c"
#endif
#if defined(OS_IRIX) || defined(OS_IRIX64)
#include "audioIO_IRIX.c"
#endif
#ifdef OS_HPUX
#include "audioIO_HPUX.c"
#endif
#ifdef OS_SunOS
#include "audioIO_SunOS.c"
#endif
#ifdef __BEOS__
#include "audioIO_BeOS.c"
#endif