diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-23 22:22:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-23 22:22:27 (GMT) |
commit | a4966647ecd7b4583059476e5373f0cd6ee38f76 (patch) | |
tree | 103ec5f764d3dc6c3e09b17c2a829de38ed41429 /Doc/lib | |
parent | 1c7cd63a2b205d265e03c4f16656267e2ff5501c (diff) | |
download | cpython-a4966647ecd7b4583059476e5373f0cd6ee38f76.zip cpython-a4966647ecd7b4583059476e5373f0cd6ee38f76.tar.gz cpython-a4966647ecd7b4583059476e5373f0cd6ee38f76.tar.bz2 |
Markup consistency.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libsunaudio.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsunaudio.tex b/Doc/lib/libsunaudio.tex index 41c819c..5312ebb 100644 --- a/Doc/lib/libsunaudio.tex +++ b/Doc/lib/libsunaudio.tex @@ -71,12 +71,12 @@ etc. and returns it in the form of an audio status object. This object has no methods but it contains a number of attributes describing the current device status. The names and meanings of the attributes are described in -\file{/usr/include/sun/audioio.h} and in the \manpage{audio}{7I} +\code{<sun/audioio.h>} and in the \manpage{audio}{7I} manual page. Member names -are slightly different from their \C{} counterparts: a status object is +are slightly different from their C counterparts: a status object is only a single structure. Members of the \cdata{play} substructure have \samp{o_} prepended to their name and members of the \cdata{record} -structure have \samp{i_}. So, the \C{} member \cdata{play.sample_rate} is +structure have \samp{i_}. So, the C member \cdata{play.sample_rate} is accessed as \member{o_sample_rate}, \cdata{record.gain} as \member{i_gain} and \cdata{monitor_gain} plainly as \member{monitor_gain}. \end{methoddesc} @@ -115,7 +115,7 @@ There is a companion module, \module{SUNAUDIODEV}\refstmodindex{SUNAUDIODEV}, which defines useful symbolic constants like \constant{MIN_GAIN}, \constant{MAX_GAIN}, \constant{SPEAKER}, etc. The names of the constants are the same names -as used in the \C{} include file \code{<sun/audioio.h>}, with the +as used in the C include file \code{<sun/audioio.h>}, with the leading string \samp{AUDIO_} stripped. The audio device supports asynchronous notification of various events, |