00001 /* $Id: soundcore.h 10830 2003-08-29 10:13:23Z ch12 $ */ 00002 /*****************************************************************************/ 00011 /* (c) 2003 Technische Universitaet Dresden 00012 * This file is part of DROPS, which is distributed under the terms of the 00013 * GNU General Public License 2. Please see the COPYING file for details. 00014 */ 00015 00016 #ifndef __DDE_LINUX_LIB_SOUND_SOUNDCORE_H_ 00017 #define __DDE_LINUX_LIB_SOUND_SOUNDCORE_H_ 00018 00019 #define TYPE_MAX 3 00020 # define TYPE_DSP 0 00021 # define TYPE_MIXER 1 00022 # define TYPE_MIDI 2 /* unused */ 00023 #define NUM_MAX 4 00025 struct file_operations* soundcore_req_fops(int type, int num); 00026 void soundcore_rel_fops(int type, int num); 00027 00028 #endif