~ubuntu-branches/ubuntu/precise/glib2.0/precise-updates

« back to all changes in this revision

Viewing changes to glib/ghash.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-10 16:23:46 UTC
  • mfrom: (1.59.35)
  • Revision ID: package-import@ubuntu.com-20120110162346-5s54yf7s1va1zb6i
Tags: 2.31.8-0ubuntu1
* New upstream version, drop patch which is in the new version
* debian/libglib2.0-0.symbols: new version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
void        g_hash_table_replace           (GHashTable     *hash_table,
69
69
                                            gpointer        key,
70
70
                                            gpointer        value);
 
71
void        g_hash_table_add               (GHashTable     *hash_table,
 
72
                                            gpointer        key);
71
73
gboolean    g_hash_table_remove            (GHashTable     *hash_table,
72
74
                                            gconstpointer   key);
73
75
void        g_hash_table_remove_all        (GHashTable     *hash_table);
76
78
void        g_hash_table_steal_all         (GHashTable     *hash_table);
77
79
gpointer    g_hash_table_lookup            (GHashTable     *hash_table,
78
80
                                            gconstpointer   key);
 
81
gboolean    g_hash_table_contains          (GHashTable     *hash_table,
 
82
                                            gconstpointer   lookup_key);
79
83
gboolean    g_hash_table_lookup_extended   (GHashTable     *hash_table,
80
84
                                            gconstpointer   lookup_key,
81
85
                                            gpointer       *orig_key,