~ubuntu-branches/ubuntu/intrepid/glib2.0/intrepid

« back to all changes in this revision

Viewing changes to docs/reference/gio/html/GIOModule.html

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2008-09-03 00:51:29 UTC
  • mfrom: (1.2.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903005129-cuvzg72uin744gd6
Tags: 2.18.0-1
* New upstream stable release, with API addition.
  - Update symbols file for new g_object_get_type() symbol and drop
    g_slice_debug_tree_statistics() which shouldn't have been exported in
    the first place.
  - Refresh patches 01_gettext-desktopfiles,
    02_usr_share_gnome_applications, and 03_blacklist-directories to apply
    cleanly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
>gchar</a> *filename);
71
71
<a
72
72
href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"
73
 
>GList</a>*              <a class="link" href="GIOModule.html#g-io-modules-load-all-in-directory" title="g_io_modules_load_all_in_directory ()">g_io_modules_load_all_in_directory</a>  (const char *dirname);
 
73
>GList</a>*              <a class="link" href="GIOModule.html#g-io-modules-load-all-in-directory" title="g_io_modules_load_all_in_directory ()">g_io_modules_load_all_in_directory</a>  (const <a
 
74
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"
 
75
>gchar</a> *dirname);
74
76
void                <a class="link" href="GIOModule.html#g-io-module-load" title="g_io_module_load ()">g_io_module_load</a>                    (<a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a> *module);
75
77
void                <a class="link" href="GIOModule.html#g-io-module-unload" title="g_io_module_unload ()">g_io_module_unload</a>                  (<a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a> *module);
76
78
</pre>
152
154
<a name="g-io-modules-load-all-in-directory"></a><h3>g_io_modules_load_all_in_directory ()</h3>
153
155
<pre class="programlisting"><a
154
156
href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"
155
 
>GList</a>*              g_io_modules_load_all_in_directory  (const char *dirname);</pre>
 
157
>GList</a>*              g_io_modules_load_all_in_directory  (const <a
 
158
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"
 
159
>gchar</a> *dirname);</pre>
156
160
<p>
157
161
Loads all the modules in the specified directory.</p>
158
162
<p>
187
191
<a name="g-io-module-load"></a><h3>g_io_module_load ()</h3>
188
192
<pre class="programlisting">void                g_io_module_load                    (<a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a> *module);</pre>
189
193
<p>
190
 
Required API for GIO modules to implement. 
191
 
This function is ran after the module has been loaded into GIO, 
 
194
Required API for GIO modules to implement.
 
195
This function is ran after the module has been loaded into GIO,
192
196
to initialize the module.</p>
193
197
<p>
194
198
 
207
211
<a name="g-io-module-unload"></a><h3>g_io_module_unload ()</h3>
208
212
<pre class="programlisting">void                g_io_module_unload                  (<a class="link" href="GIOModule.html" title="GIOModule">GIOModule</a> *module);</pre>
209
213
<p>
210
 
Required API for GIO modules to implement. 
211
 
This function is ran when the module is being unloaded from GIO, 
 
214
Required API for GIO modules to implement.
 
215
This function is ran when the module is being unloaded from GIO,
212
216
to finalize the module.</p>
213
217
<p>
214
218