blob: 62b85d5e525eddd86c20e1bfe46e551267d83d87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* GLIB ABI
*
* The following is all glib information needed in order to compile
* a hald-addon.
*/
/* logical values */
const int TRUE = 1;
const int FALSE;
/* Structure declarations */
struct GMainContext;
struct GMainLoop;
/* Function declarations */
struct GMainLoop *g_main_loop_new(struct GMainContext *context, int is_running);
void g_main_loop_run(struct GMainLoop *loop);
|