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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?xml version="1.0"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY version SYSTEM "version.xml">
]>
<refentry id="liboobs-OobsIfaceModem">
<refmeta>
<refentrytitle role="top_of_page" id="liboobs-OobsIfaceModem.top_of_page">OobsIfaceModem</refentrytitle>
<manvolnum>3</manvolnum>
<refmiscinfo>LIBOOBS Library</refmiscinfo>
</refmeta>
<refnamediv>
<refname>OobsIfaceModem</refname>
<refpurpose>Object that represents an individual modem interface.</refpurpose>
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
</refnamediv>
<refsynopsisdiv id="liboobs-OobsIfaceModem.synopsis" role="synopsis">
<title role="synopsis.title">Synopsis</title>
<synopsis>
enum <link linkend="OobsModemVolume">OobsModemVolume</link>;
enum <link linkend="OobsDialType">OobsDialType</link>;
#define <link linkend="OOBS-TYPE-MODEM-VOLUME:CAPS">OOBS_TYPE_MODEM_VOLUME</link>
#define <link linkend="OOBS-TYPE-DIAL-TYPE:CAPS">OOBS_TYPE_DIAL_TYPE</link>
</synopsis>
</refsynopsisdiv>
<refsect1 id="liboobs-OobsIfaceModem.description" role="desc">
<title role="desc.title">Description</title>
<para>
</para>
</refsect1>
<refsect1 id="liboobs-OobsIfaceModem.details" role="details">
<title role="details.title">Details</title>
<refsect2 id="OobsModemVolume" role="enum">
<title>enum OobsModemVolume</title>
<indexterm zone="OobsModemVolume"><primary>OobsModemVolume</primary></indexterm><programlisting>typedef enum {
OOBS_MODEM_VOLUME_SILENT,
OOBS_MODEM_VOLUME_LOW,
OOBS_MODEM_VOLUME_MEDIUM,
OOBS_MODEM_VOLUME_LOUD
} OobsModemVolume;
</programlisting>
<para>
</para></refsect2>
<refsect2 id="OobsDialType" role="enum">
<title>enum OobsDialType</title>
<indexterm zone="OobsDialType"><primary>OobsDialType</primary></indexterm><programlisting>typedef enum {
OOBS_DIAL_TYPE_TONES,
OOBS_DIAL_TYPE_PULSES
} OobsDialType;
</programlisting>
<para>
</para></refsect2>
<refsect2 id="OOBS-TYPE-MODEM-VOLUME:CAPS" role="macro">
<title>OOBS_TYPE_MODEM_VOLUME</title>
<indexterm zone="OOBS-TYPE-MODEM-VOLUME:CAPS"><primary>OOBS_TYPE_MODEM_VOLUME</primary></indexterm><programlisting>#define OOBS_TYPE_MODEM_VOLUME (oobs_modem_volume_get_type ())
</programlisting>
<para>
</para></refsect2>
<refsect2 id="OOBS-TYPE-DIAL-TYPE:CAPS" role="macro">
<title>OOBS_TYPE_DIAL_TYPE</title>
<indexterm zone="OOBS-TYPE-DIAL-TYPE:CAPS"><primary>OOBS_TYPE_DIAL_TYPE</primary></indexterm><programlisting>#define OOBS_TYPE_DIAL_TYPE (oobs_dial_type_get_type ())
</programlisting>
<para>
</para></refsect2>
</refsect1>
</refentry>
|