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 94 95 96 97
|
<!DOCTYPE BOOK PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!entity hash "#">
<!entity gphoto2-port-log SYSTEM "sgml/gphoto2-port-log.sgml">
<!entity gphoto2-port-info-list SYSTEM "sgml/gphoto2-port-info-list.sgml">
<!entity gphoto2-port-result SYSTEM "sgml/gphoto2-port-result.sgml">
<!entity gphoto2-port SYSTEM "sgml/gphoto2-port.sgml">
<!entity gphoto2-port-library SYSTEM "sgml/gphoto2-port-library.sgml">
]>
<book id="index">
<bookinfo>
<title>GPhoto2-Port API Reference Manual</title>
<authorgroup>
<author>
<firstname>Lutz</firstname>
<surname>Mller</surname>
<affiliation>
<address>
<email>lutz@users.sf.net</email>
</address>
</affiliation>
</author>
</authorgroup>
<copyright>
<year>2000</year>
<holder>The Free Software Foundation</holder>
</copyright>
<legalnotice>
<para>
Permission is granted to copy, distribute and/or modify this
document under the terms of the <citetitle>GNU Free
Documentation License</citetitle>, Version 1.1 or any later
version published by the Free Software Foundation with no
Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. You may obtain a copy of the <citetitle>GNU Free
Documentation License</citetitle> from the Free Software
Foundation by visiting <ulink type="http"
url="http://www.fsf.org">their Web site</ulink> or by writing
to:
<address>
The Free Software Foundation, Inc.,
<street>59 Temple Place</street> - Suite 330,
<city>Boston</city>, <state>MA</state> <postcode>02111-1307</postcode>,
<country>USA</country>
</address>
</para>
</legalnotice>
<abstract>
<para>
This manual documents the GPhoto2-Port library.
It gives an overview of GPhoto2-Port, discusses examples that
come with GPhoto2-Port and includes detailed documentation of
the GPhoto2-Port API.
</para>
</abstract>
</bookinfo>
<chapter id="gphoto2-port">
<title>GPhoto2-Port Overview</title>
<para>
GPhoto2-Port is the GPhoto2 I/O library.
</para>
<para>
The benefit to using this library would be that all communications can be
done quickly and without worry for device specific functions; all devices
are abstracted to a point, allowing you to read/write to a device using
the same interface. For example, you can set all the options on the
serial port easily, and then read/write to that device. Additionally,
you could easily switch over to a USB device, and read/write without
having to learn the USB internals.
</para>
<para>
The whole idea behind this is simplicity. It should be easy to write a
program that uses any sort of serial-based device. This will take the
hassle out of playing with low-level configurations and actually just
get on to writing the core of the application.
</para>
</chapter>
<chapter id="gphoto2-base" role="no-toc">
<title>GPhoto2-Port Core Reference</title>
&gphoto2-port-log;
&gphoto2-port-result;
&gphoto2-port-info-list;
&gphoto2-port;
&gphoto2-port-library;
</chapter>
</book>
|