00001 /* 00002 * @(#)plt/Unix.h 3.00 15 October 1999 00003 * 00004 * Copyright (c) 2000 Pete Goodliffe (pete@cthree.org) 00005 * 00006 * This file is part of TSE3 - the Trax Sequencer Engine version 3.00. 00007 * 00008 * This library is modifiable/redistributable under the terms of the GNU 00009 * General Public License. 00010 * 00011 * You should have received a copy of the GNU General Public License along 00012 * with this program; see the file COPYING. If not, write to the Free Software 00013 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00014 * 00015 */ 00016 00017 #ifndef TSE3_PLT_UNIX_H 00018 #define TSE3_PLT_UNIX_H 00019 00020 #include "tse3/MidiScheduler.h" 00021 00022 namespace TSE3 00023 { 00034 namespace Plt 00035 { 00050 namespace UnixMidiSchedulerFactory 00051 { 00056 enum UnixPlatform 00057 { 00058 UnixPlatform_OSS, 00059 UnixPlatform_Alsa, 00060 UnixPlatform_Arts, 00061 UnixPlatform_Null 00062 }; 00063 00072 UnixPlatform preferredPlatform(); 00073 00084 void setPreferredPlatform(UnixPlatform p); 00085 00094 UnixPlatform createdPlatform(); 00095 } 00096 } 00097 } 00098 00099 #endif