summaryrefslogtreecommitdiffstats
path: root/eglib/gmodule.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@indt.org.br>2008-07-28 10:43:25 -0300
committerLuiz Augusto von Dentz <luiz.dentz@indt.org.br>2008-07-28 10:43:25 -0300
commit1d13df54aeeddcb0061abedd3295c198c82c2e88 (patch)
tree8057755aae583a0fd543e724586302296dd72727 /eglib/gmodule.h
parent0b91ee8fa46e3a163efb851d8e9d7b29dc39d48f (diff)
Remove eglib.
Diffstat (limited to 'eglib/gmodule.h')
-rw-r--r--eglib/gmodule.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/eglib/gmodule.h b/eglib/gmodule.h
deleted file mode 100644
index e392d5c8..00000000
--- a/eglib/gmodule.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __GMODULE_H
-#define __GMODULE_H
-
-#include <gmain.h>
-
-typedef struct _GModule GModule;
-
-typedef enum {
- G_MODULE_BIND_LAZY = 1 << 0,
- G_MODULE_BIND_LOCAL = 1 << 1,
- G_MODULE_BIND_MASK = 0x03
-} GModuleFlags;
-
-GModule *g_module_open(const gchar *file_name, GModuleFlags flags);
-gboolean g_module_symbol(GModule *module, const gchar *symbol_name,
- gpointer *symbol);
-const gchar *g_module_name(GModule *module);
-gboolean g_module_close(GModule *module);
-const gchar *g_module_error(void);
-
-#endif /* __GMODULE_H */