/usr/share/gtk-doc/html/gnet/gnet-gnet.html is in libgnet-dev 2.0.8-2.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>GNet</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.72.0">
<link rel="start" href="index.html" title="GNet Network Library Reference Manual">
<link rel="up" href="libgnet-reference.html" title="GNet Library Reference">
<link rel="prev" href="libgnet-reference.html" title="GNet Library Reference">
<link rel="next" href="gnet-inetaddr.html" title="InetAddr">
<meta name="generator" content="GTK-Doc V1.8 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="chapter" href="gnet-overview.html" title="GNet Overview">
<link rel="chapter" href="gnet-developers.html" title="GNet for developers">
<link rel="chapter" href="gnet-examples.html" title="GNet Examples">
<link rel="chapter" href="libgnet-reference.html" title="GNet Library Reference">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="libgnet-reference.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="libgnet-reference.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GNet Network Library Reference Manual</th>
<td><a accesskey="n" href="gnet-inetaddr.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id325568" class="shortcut">Top</a>
 | 
<a href="#id326056" class="shortcut">Description</a></nobr></td></tr>
</table>
<div class="refentry" lang="en">
<a name="gnet-gnet"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2>
<a name="id325568"></a><span class="refentrytitle">GNet</span>
</h2>
<p>GNet — GNet utility functions and macros</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">
#include <gnet.h>
#define <a href="gnet-gnet.html#GNET-EXPORT:CAPS">GNET_EXPORT</a>
#define <a href="gnet-gnet.html#GNET-CHECK-VERSION:CAPS">GNET_CHECK_VERSION</a> (major,minor,micro)
void <a href="gnet-gnet.html#gnet-init">gnet_init</a> (void);
</pre>
</div>
<div class="refsect1" lang="en">
<a name="id326056"></a><h2>Description</h2>
<p>
The main GNet module provides the function <a href="gnet-gnet.html#gnet-init"><code class="function">gnet_init()</code></a>. This function
should be called at the beginning of any GNet program.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id326081"></a><h2>Details</h2>
<div class="refsect2" lang="en">
<a name="id326092"></a><h3>
<a name="GNET-EXPORT:CAPS"></a>GNET_EXPORT</h3>
<a class="indexterm" name="id326104"></a><pre class="programlisting">#define GNET_EXPORT</pre>
<p>
Declares a variable exported. Used interally.</p>
<p>
</p>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id326122"></a><h3>
<a name="GNET-CHECK-VERSION:CAPS"></a>GNET_CHECK_VERSION()</h3>
<a class="indexterm" name="id326134"></a><pre class="programlisting">#define GNET_CHECK_VERSION(major,minor,micro)</pre>
<p>
Checks if the version given is compatable with this version of the
library. For example, GNET_CHECK_VERSION(1.2.3) would return TRUE
if the version is 1.2.5, and FALSE if 1.1.0. This can be used in
build tests.</p>
<p>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><span class="term"><em class="parameter"><code>major</code></em> :</span></td>
<td> Major version number
</td>
</tr>
<tr>
<td><span class="term"><em class="parameter"><code>minor</code></em> :</span></td>
<td> Minor version number
</td>
</tr>
<tr>
<td><span class="term"><em class="parameter"><code>micro</code></em> :</span></td>
<td> Micro version number
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id326202"></a><h3>
<a name="gnet-init"></a>gnet_init ()</h3>
<a class="indexterm" name="id326214"></a><pre class="programlisting">void gnet_init (void);</pre>
<p>
Initializes the GNet library. This should be called at the
beginning of any GNet program and before any call to <code class="function">gtk_init()</code>.</p>
<p>
</p>
</div>
</div>
</div>
</body>
</html>
|