1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
<HTML>
<HEAD>
<TITLE>Advanced Linux Sound Architecture - Driver: Private data/values</TITLE>
</HEAD>
<BODY>
<A HREF="coding-5.html">Previous</A>
<A HREF="coding-7.html">Next</A>
<A HREF="coding.html#toc6">Table of Contents</A>
<HR>
<H2><A NAME="s6">6. Private data/values</A></H2>
<P>Some structures have pointers on private data and values. These variables
aren't used with abstract layers and use is intended for low-level code. </P>
<P>
<HR>
<PRE>
snd_card_t -> private_data
snd_card_t -> private_free (called from snd_card_free if not NULL)
</PRE>
<HR>
</P>
<P>
<HR>
<PRE>
struct snd_stru_pcm_hardware -> private_data
struct snd_stru_pcm_hardware -> private_free (called from snd_pcm_free if not NULL)
snd_pcm_t -> private_data
snd_pcm_t -> private_free (called from snd_pcm_free if not NULL)
</PRE>
<HR>
</P>
<P>
<HR>
<PRE>
struct snd_stru_mixer_channel_hw -> private_value
snd_kmixer_channel_t -> private_data
snd_kmixer_channel_t -> private_free (called from snd_mixer_free if not NULL)
snd_kmixer_t -> private_value
snd_kmixer_t -> private_data
snd_kmixer_t -> private_free (called from snd_mixer_free if not NULL)
</PRE>
<HR>
</P>
<HR>
<A HREF="coding-5.html">Previous</A>
<A HREF="coding-7.html">Next</A>
<A HREF="coding.html#toc6">Table of Contents</A>
</BODY>
</HTML>
|