#ifndef __EMU10K1_SYNTH_H1#define __EMU10K1_SYNTH_H2/*3* Defines for the Emu10k1 WaveTable synth4*5* Copyright (C) 2000 Takashi Iwai <[email protected]>6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, write to the Free Software19* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA20*/2122#include "emu10k1.h"23#include "emux_synth.h"2425/* sequencer device id */26#define SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH "emu10k1-synth"2728/* argument for snd_seq_device_new */29struct snd_emu10k1_synth_arg {30struct snd_emu10k1 *hwptr; /* chip */31int index; /* sequencer client index */32int seq_ports; /* number of sequencer ports to be created */33int max_voices; /* maximum number of voices for wavetable */34};3536#define EMU10K1_MAX_MEMSIZE (32 * 1024 * 1024) /* 32MB */3738#endif394041