Author: EricStein Date: 2007-07-07 23:32:06 -0400 (Sat, 07 Jul 2007) New Revision: 412
Modified: trunk/pysoy/include/glib.pxd Log: Added hash & equal funcs Modified: trunk/pysoy/include/glib.pxd =================================================================== --- trunk/pysoy/include/glib.pxd 2007-07-08 03:26:31 UTC (rev 411) +++ trunk/pysoy/include/glib.pxd 2007-07-08 03:32:06 UTC (rev 412) @@ -47,6 +47,13 @@ ctypedef void GFreeFunc ( gpointer ) ctypedef gchar* GTranslateFunc ( gchar*, gpointer ) + cdef gboolean g_str_equal ( gconstpointer, gconstpointer ) + cdef guint g_str_hash ( gconstpointer ) + cdef gboolean g_int_equal ( gconstpointer, gconstpointer ) + cdef guint g_int_hash ( gconstpointer ) + cdef gboolean g_direct_equal ( gconstpointer, gconstpointer ) + cdef guint g_direct_hash ( gconstpointer ) + cdef GHashTable* g_hash_table_new ( GHashFunc, GEqualFunc ) cdef GHashTable* g_hash_table_new_full ( GHashFunc, GEqualFunc, GDestroyNotify, GDestroyNotify ) cdef void g_hash_table_destroy ( GHashTable* ) _______________________________________________ PySoy-SVN mailing list [email protected] http://www.pysoy.org/mailman/listinfo/pysoy-svn
