|
ALSA project - the C library reference
|
Macros | |
| #define | snd_pcm_access_mask_alloca(ptr) |
| allocate an empty snd_pcm_access_mask_t using standard alloca More... | |
See the PCM (digital audio) interface page for more details.
| #define snd_pcm_access_mask_alloca | ( | ptr | ) |
allocate an empty snd_pcm_access_mask_t using standard alloca
| ptr | returned pointer |
| void snd_pcm_access_mask_any | ( | snd_pcm_access_mask_t * | mask | ) |
set all bits in a snd_pcm_access_mask_t
| mask | pointer to mask |
| void snd_pcm_access_mask_copy | ( | snd_pcm_access_mask_t * | dst, |
| const snd_pcm_access_mask_t * | src | ||
| ) |
copy one snd_pcm_access_mask_t to another
| dst | pointer to destination |
| src | pointer to source |
| int snd_pcm_access_mask_empty | ( | const snd_pcm_access_mask_t * | mask | ) |
test, if given a snd_pcm_access_mask_t is empty
| mask | pointer to mask |
| 0 | not empty |
| 1 | empty |
| void snd_pcm_access_mask_free | ( | snd_pcm_access_mask_t * | obj | ) |
frees a previously allocated snd_pcm_access_mask_t
| obj | pointer to object to free |
| int snd_pcm_access_mask_malloc | ( | snd_pcm_access_mask_t ** | ptr | ) |
allocate an empty snd_pcm_access_mask_t using standard malloc
| ptr | returned pointer |
| void snd_pcm_access_mask_none | ( | snd_pcm_access_mask_t * | mask | ) |
reset all bits in a snd_pcm_access_mask_t
| mask | pointer to mask |
| void snd_pcm_access_mask_reset | ( | snd_pcm_access_mask_t * | mask, |
| snd_pcm_access_t | val | ||
| ) |
make an access type missing from a snd_pcm_access_mask_t
| mask | pointer to mask |
| val | access type |
| void snd_pcm_access_mask_set | ( | snd_pcm_access_mask_t * | mask, |
| snd_pcm_access_t | val | ||
| ) |
make an access type present in a snd_pcm_access_mask_t
| mask | pointer to mask |
| val | access type |
| size_t snd_pcm_access_mask_sizeof | ( | void | ) |
get size of snd_pcm_access_mask_t
| int snd_pcm_access_mask_test | ( | const snd_pcm_access_mask_t * | mask, |
| snd_pcm_access_t | val | ||
| ) |
test the presence of an access type in a snd_pcm_access_mask_t
| mask | pointer to mask |
| val | access type |