~ubuntu-branches/ubuntu/trusty/glib2.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gobject/gtypeplugin.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-03-04 13:08:00 UTC
  • mfrom: (1.63.34)
  • Revision ID: package-import@ubuntu.com-20140304130800-6f4fs4s8iri00blg
Tags: 2.39.91-0ubuntu1
* New upstream release 2.39.91
* revert-0001-Improve-GAsyncQueue-test-coverage.patch: Drop, fixed upstream.
* Re-enable test_timer_stop to gather more information about the failure.
* debian/libglib2.0-0.symbols: Update with new symbols in this release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 * @unuse_plugin: Decreases the use count of the plugin.
92
92
 * @complete_type_info: Fills in the #GTypeInfo and 
93
93
 *  #GTypeValueTable structs for the type. The structs are initialized
94
 
 *  with <literal>memset(s, 0, sizeof (s))</literal> before calling 
95
 
 *  this function.
 
94
 *  with `memset(s, 0, sizeof (s))` before calling this function.
96
95
 * @complete_interface_info: Fills in missing parts of the #GInterfaceInfo 
97
 
 *  for the interface. The structs is initialized with 
98
 
 *  <literal>memset(s, 0, sizeof (s))</literal> before calling
99
 
 *  this function.
 
96
 *  for the interface. The structs is initialized with
 
97
 *  `memset(s, 0, sizeof (s))` before calling this function.
100
98
 * 
101
99
 * The #GTypePlugin interface is used by the type system in order to handle
102
100
 * the lifecycle of dynamically loaded types.