summaryrefslogtreecommitdiff
path: root/glib-abi.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2008-11-13 03:05:38 +0100
committerHenrik Rydberg <rydberg@euromail.se>2008-11-13 03:05:38 +0100
commit49680952052582ff3dd11bc413b6287b65063b2a (patch)
treea1c1f2dce3ad12f6464088f235d631e94b9af616 /glib-abi.h
Initial GIT version: hal-applesmc-0.14
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'glib-abi.h')
-rw-r--r--glib-abi.h19
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 */
9const int TRUE = 1;
10const int FALSE;
11
12/* Structure declarations */
13struct GMainContext;
14struct GMainLoop;
15
16/* Function declarations */
17struct GMainLoop *g_main_loop_new(struct GMainContext *context, int is_running);
18void g_main_loop_run(struct GMainLoop *loop);
19