2001-02-05 15:44:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
size_t snd_hwdep_info_sizeof();
|
2001-03-10 10:19:37 +00:00
|
|
|
#define snd_hwdep_info_alloca(ptr) do { assert(ptr); *ptr = (snd_hwdep_info_t *) alloca(snd_hwdep_info_sizeof()); memset(*ptr, 0, snd_hwdep_info_sizeof()); } while (0)
|
2001-02-05 15:44:42 +00:00
|
|
|
int snd_hwdep_info_malloc(snd_hwdep_info_t **ptr);
|
|
|
|
|
void snd_hwdep_info_free(snd_hwdep_info_t *obj);
|
|
|
|
|
void snd_hwdep_info_copy(snd_hwdep_info_t *dst, const snd_hwdep_info_t *src);
|
|
|
|
|
|
|
|
|
|
unsigned int snd_hwdep_info_get_device(const snd_hwdep_info_t *obj);
|
|
|
|
|
|
|
|
|
|
int snd_hwdep_info_get_card(const snd_hwdep_info_t *obj);
|
|
|
|
|
|
2001-02-06 23:48:10 +00:00
|
|
|
const char *snd_hwdep_info_get_id(const snd_hwdep_info_t *obj);
|
2001-02-05 15:44:42 +00:00
|
|
|
|
2001-02-06 23:48:10 +00:00
|
|
|
const char *snd_hwdep_info_get_name(const snd_hwdep_info_t *obj);
|
2001-02-05 15:44:42 +00:00
|
|
|
|
2001-03-29 11:18:16 +00:00
|
|
|
snd_hwdep_iface_t snd_hwdep_info_get_iface(const snd_hwdep_info_t *obj);
|
2001-02-05 15:44:42 +00:00
|
|
|
|
|
|
|
|
void snd_hwdep_info_set_device(snd_hwdep_info_t *obj, unsigned int val);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|