Add some very modest beginnings

svn path=/trunk/; revision=6146
This commit is contained in:
Matthias Clasen 2007-12-17 17:54:02 +00:00
parent 66ff85f3ac
commit 747bb6bec7
2 changed files with 20 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<bookinfo> <bookinfo>
<title>GIO Reference Manual</title> <title>GIO Reference Manual</title>
<releaseinfo>for GIO &version;</releaseinfo> <releaseinfo>for GIO &version;</releaseinfo>
< /bookinfo> </bookinfo>
<xi:include href="overview.xml"/> <xi:include href="overview.xml"/>

View File

@ -6,6 +6,25 @@
gnome-vfs to GIO. gnome-vfs to GIO.
</para> </para>
<table id="posix-vs-gio">
<title>Comparison of POSIX and GIO concepts</title>
<tgroup cols="2">
<thead>
<row><entry>POSIX</entry><entry>GIO</entry></row>
</thead>
<tbody>
<row><entry>char *path</entry><entry>GFile *file</entry></row>
<row><entry>struct stat *buf</entry><entry>GFileInfo *info</entry></row>
<row><entry>struct statvfs *buf</entry><entry>GFileInfo *info</entry></row>
<row><entry morerows="1">int fd</entry><entry>GInputStream *in</entry></row>
<row><entry>GOutputStream *out</entry></row>
<row><entry>DIR *</entry><entry>GFileEnumerator *enum</entry></row>
<row><entry>fstab entry</entry><entry>GUnixMountPoint *mount_point</entry></row>
<row><entry>mtab entry</entry><entry>GUnixMountEntry *mount_entry</entry></row>
</tbody>
</tgroup>
</table>
<!-- FIXME now explain ! --> <!-- FIXME now explain ! -->
</chapter> </chapter>