brintos

brintos / linux-shallow public Read only

0
0
Text · 748 B · 576cf05 Raw
26 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 *   ALSA sequencer /proc info4 *   Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>5 */6#ifndef __SND_SEQ_INFO_H7#define __SND_SEQ_INFO_H8 9#include <sound/info.h>10#include <sound/seq_kernel.h>11 12void snd_seq_info_clients_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);13void snd_seq_info_timer_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);14void snd_seq_info_queues_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);15 16 17#ifdef CONFIG_SND_PROC_FS18int snd_seq_info_init(void);19void snd_seq_info_done(void);20#else21static inline int snd_seq_info_init(void) { return 0; }22static inline void snd_seq_info_done(void) {}23#endif24 25#endif26