diff options
Diffstat (limited to 'gdk/gdk.h')
-rw-r--r-- | gdk/gdk.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -209,6 +209,23 @@ guint gdk_threads_add_timeout (guint interval, gpointer data); +guint gdk_threads_add_idle_full (gint priority, + GSourceFunc function, + gpointer data, + GDestroyNotify notify); +guint gdk_threads_add_idle (GSourceFunc function, + gpointer data); + +guint gdk_threads_add_timeout_full (gint priority, + guint interval, + GSourceFunc function, + gpointer data, + GDestroyNotify notify); +guint gdk_threads_add_timeout (guint interval, + GSourceFunc function, + gpointer data); + + #ifdef G_THREADS_ENABLED # define GDK_THREADS_ENTER() G_STMT_START { \ if (gdk_threads_lock) \ |