00001 #ifndef LINUX_ARCH_H 00002 #define LINUX_ARCH_H 00003 00004 #ifdef HAVE_ALSA 00005 #include "Sound/RageSoundDriver_ALSA9.h" 00006 #include "Sound/RageSoundDriver_ALSA9_Software.h" 00007 #endif 00008 00009 #ifdef HAVE_OSS 00010 #include "Sound/RageSoundDriver_OSS.h" 00011 #endif 00012 00013 #ifdef HAVE_GTK 00014 #include "LoadingWindow/LoadingWindow_Gtk.h" 00015 #endif 00016 00017 /* Load this even if we have GTK, since we can fall back if GTK is missing. */ 00018 #include "LoadingWindow/LoadingWindow_SDL.h" 00019 00020 #include "ArchHooks/ArchHooks_Unix.h" 00021 00022 #include "Lights/LightsDriver_LinuxWeedTech.h" 00023 #include "Lights/LightsDriver_LinuxParallel.h" 00024 00025 #include "MemoryCard/MemoryCardDriverThreaded_Linux.h" 00026 00027 #endif 00028 00029 /* 00030 * (c) 2002-2003 Glenn Maynard 00031 * All rights reserved. 00032 * 00033 * Permission is hereby granted, free of charge, to any person obtaining a 00034 * copy of this software and associated documentation files (the 00035 * "Software"), to deal in the Software without restriction, including 00036 * without limitation the rights to use, copy, modify, merge, publish, 00037 * distribute, and/or sell copies of the Software, and to permit persons to 00038 * whom the Software is furnished to do so, provided that the above 00039 * copyright notice(s) and this permission notice appear in all copies of 00040 * the Software and that both the above copyright notice(s) and this 00041 * permission notice appear in supporting documentation. 00042 * 00043 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00044 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00045 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 00046 * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS 00047 * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT 00048 * OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 00049 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 00050 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 00051 * PERFORMANCE OF THIS SOFTWARE. 00052 */ 00053