diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2008-11-24 10:51:54 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2008-11-24 10:51:54 +0100 |
| commit | 8a6c3c55a7b5ff2042ad6973ddd7ab73236de047 (patch) | |
| tree | a4ad1692c6b30f6080afbec1b31664afcf407385 /glib-abi.h | |
Initial version
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'glib-abi.h')
| -rw-r--r-- | glib-abi.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/glib-abi.h b/glib-abi.h new file mode 100644 index 0000000..62b85d5 --- /dev/null +++ b/glib-abi.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * GLIB ABI | ||
| 3 | * | ||
| 4 | * The following is all glib information needed in order to compile | ||
| 5 | * a hald-addon. | ||
| 6 | */ | ||
| 7 | |||
| 8 | /* logical values */ | ||
| 9 | const int TRUE = 1; | ||
| 10 | const int FALSE; | ||
| 11 | |||
| 12 | /* Structure declarations */ | ||
| 13 | struct GMainContext; | ||
| 14 | struct GMainLoop; | ||
| 15 | |||
| 16 | /* Function declarations */ | ||
| 17 | struct GMainLoop *g_main_loop_new(struct GMainContext *context, int is_running); | ||
| 18 | void g_main_loop_run(struct GMainLoop *loop); | ||
| 19 | |||
