From: Jaroslav Kysela Date: Fri, 8 Jul 2022 19:44:44 +0000 (+0200) Subject: pcm: direct plugins: make three more symbols private to library X-Git-Tag: v1.2.8~15 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=378c6a9215ea52eb453a9da8f2632eadcb046c72;p=alsa-lib.git pcm: direct plugins: make three more symbols private to library Those symbols should not be exported: snd_pcm_direct_poll_descriptors snd_pcm_direct_check_xrun snd_pcm_direct_slave_recover Signed-off-by: Jaroslav Kysela --- diff --git a/src/pcm/pcm_direct.h b/src/pcm/pcm_direct.h index 181f45ee..e7d89e5f 100644 --- a/src/pcm/pcm_direct.h +++ b/src/pcm/pcm_direct.h @@ -224,6 +224,8 @@ struct snd_pcm_direct { snd1_pcm_direct_nonblock #define snd_pcm_direct_async \ snd1_pcm_direct_async +#define snd_pcm_direct_poll_descriptors \ + snd1_pcm_direct_poll_descriptors #define snd_pcm_direct_poll_revents \ snd1_pcm_direct_poll_revents #define snd_pcm_direct_info \ @@ -264,6 +266,10 @@ struct snd_pcm_direct { snd1_pcm_direct_set_chmap #define snd_pcm_direct_reset_slave_ptr \ snd1_pcm_direct_reset_slave_ptr +#define snd_pcm_direct_check_xrun \ + snd1_pcm_direct_check_xrun +#define snd_pcm_direct_slave_recover \ + snd1_pcm_direct_slave_recover int snd_pcm_direct_semaphore_create_or_connect(snd_pcm_direct_t *dmix);