33 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2#ifndef __EMU8000_LOCAL_H3#define __EMU8000_LOCAL_H4/*5 * Local defininitons for the emu8000 (AWE32/64)6 *7 * Copyright (C) 1999 Steve Ratcliffe8 * Copyright (C) 1999-2000 Takashi Iwai <tiwai@suse.de>9 */10 11#include <linux/wait.h>12#include <linux/sched.h>13#include <linux/slab.h>14#include <sound/core.h>15#include <sound/emu8000.h>16#include <sound/emu8000_reg.h>17 18/* emu8000_patch.c */19int snd_emu8000_sample_new(struct snd_emux *rec, struct snd_sf_sample *sp,20 struct snd_util_memhdr *hdr,21 const void __user *data, long count);22int snd_emu8000_sample_free(struct snd_emux *rec, struct snd_sf_sample *sp,23 struct snd_util_memhdr *hdr);24void snd_emu8000_sample_reset(struct snd_emux *rec);25 26/* emu8000_callback.c */27void snd_emu8000_ops_setup(struct snd_emu8000 *emu);28 29/* emu8000_pcm.c */30int snd_emu8000_pcm_new(struct snd_card *card, struct snd_emu8000 *emu, int index);31 32#endif /* __EMU8000_LOCAL_H */33