26 #ifndef __ALSA_CONTROL_EXTERNAL_H
27 #define __ALSA_CONTROL_EXTERNAL_H
43 #define SND_CTL_PLUGIN_ENTRY(name) _snd_ctl_##name##_open
48 #define SND_CTL_PLUGIN_SYMBOL(name) SND_DLSYM_BUILD_VERSION(SND_CTL_PLUGIN_ENTRY(name), SND_CONTROL_DLSYM_VERSION);
53 #define SND_CTL_PLUGIN_DEFINE_FUNC(plugin) \
54 int SND_CTL_PLUGIN_ENTRY(plugin) (snd_ctl_t **handlep, const char *name,\
55 snd_config_t *root, snd_config_t *conf, int mode)
67 #define SND_CTL_EXT_VERSION_MAJOR 1
68 #define SND_CTL_EXT_VERSION_MINOR 0
69 #define SND_CTL_EXT_VERSION_TINY 0
73 #define SND_CTL_EXT_VERSION ((SND_CTL_EXT_VERSION_MAJOR<<16) |\
74 (SND_CTL_EXT_VERSION_MINOR<<8) |\
75 (SND_CTL_EXT_VERSION_TINY))
151 void (*
free_key)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key);
156 int *type,
unsigned int *acc,
unsigned int *count);
161 long *imin,
long *imax,
long *istep);
166 int64_t *imin, int64_t *imax, int64_t *istep);
175 char *name,
size_t name_max_len);
179 int (*
read_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key,
long *value);
183 int (*
read_integer64)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, int64_t *value);
187 int (*
read_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key,
unsigned int *items);
191 int (*
read_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key,
unsigned char *data,
200 int (*
write_integer)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key,
long *value);
212 int (*
write_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key,
unsigned char *data,
237 int (*
poll_revents)(snd_ctl_ext_t *ext,
struct pollfd *pfds,
unsigned int nfds,
unsigned short *revents);
243 typedef enum snd_ctl_ext_access {
244 SND_CTL_EXT_ACCESS_READ = (1<<0),
245 SND_CTL_EXT_ACCESS_WRITE = (1<<1),
246 SND_CTL_EXT_ACCESS_READWRITE = (3<<0),
247 SND_CTL_EXT_ACCESS_VOLATILE = (1<<2),
248 SND_CTL_EXT_ACCESS_INACTIVE = (1<<8),
254 #define SND_CTL_EXT_KEY_NOT_FOUND (snd_ctl_ext_key_t)(-1)