File: hsgthread.h

package info (click to toggle)
haskell-gtk 0.15.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,964 kB
  • sloc: haskell: 3,346; ansic: 826; makefile: 161
file content (16 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <glib.h>

#ifndef HSGTHREAD_H
#define HSGTHREAD_H

/* Initialize the default _fmode on WIN32 systems. */
void gtk2hs_initialise (void);

/* 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