File: hsgthread.h

package info (click to toggle)
haskell-gtk 0.11.0-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,920 kB
  • ctags: 82
  • sloc: haskell: 1,929; ansic: 714; sh: 5; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <glib.h>

#ifndef HSGTHREAD_H
#define HSGTHREAD_H

/* Initialize the threads system of Gdk and Gtk. */
void gtk2hs_threads_initialise (void);

/* Free an object within the Gtk+ main loop. */
void gtk2hs_g_object_unref_from_mainloop(gpointer object);

#endif