#ifndef __EMU8000_LOCAL_H1#define __EMU8000_LOCAL_H2/*3* Local defininitons for the emu8000 (AWE32/64)4*5* Copyright (C) 1999 Steve Ratcliffe6* Copyright (C) 1999-2000 Takashi Iwai <[email protected]>7*8* This program is free software; you can redistribute it and/or modify9* it under the terms of the GNU General Public License as published by10* the Free Software Foundation; either version 2 of the License, or11* (at your option) any later version.12*13* This program is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16* GNU General Public License for more details.17*18* You should have received a copy of the GNU General Public License19* along with this program; if not, write to the Free Software20* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA21*/2223#include <linux/wait.h>24#include <linux/sched.h>25#include <linux/slab.h>26#include <sound/core.h>27#include <sound/emu8000.h>28#include <sound/emu8000_reg.h>2930/* emu8000_patch.c */31int snd_emu8000_sample_new(struct snd_emux *rec, struct snd_sf_sample *sp,32struct snd_util_memhdr *hdr,33const void __user *data, long count);34int snd_emu8000_sample_free(struct snd_emux *rec, struct snd_sf_sample *sp,35struct snd_util_memhdr *hdr);36void snd_emu8000_sample_reset(struct snd_emux *rec);3738/* emu8000_callback.c */39void snd_emu8000_ops_setup(struct snd_emu8000 *emu);4041/* emu8000_pcm.c */42int snd_emu8000_pcm_new(struct snd_card *card, struct snd_emu8000 *emu, int index);4344#endif /* __EMU8000_LOCAL_H */454647