summaryrefslogtreecommitdiffstats
path: root/eglib/gmain.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-02-01 14:21:14 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2008-02-01 14:21:14 +0000
commit9225eadeb28150fcb0b05ec0b31349ce812dd3d0 (patch)
treeff22541587206682b8c7c24c1df90e814cf28980 /eglib/gmain.h
parentf8bbe089095f14b0e81df36209284ee77b54317e (diff)
Move GModule code to gmodule.c and gmodule.h
Diffstat (limited to 'eglib/gmain.h')
-rw-r--r--eglib/gmain.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/eglib/gmain.h b/eglib/gmain.h
index cfc53378..2ed00fb3 100644
--- a/eglib/gmain.h
+++ b/eglib/gmain.h
@@ -279,20 +279,4 @@ void g_string_append_printf(GString *string, const gchar *format, ...);
gchar *g_string_free(GString *string, gboolean free_segment);
-/* GModule */
-
-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);
-gboolean g_module_close(GModule *module);
-const gchar *g_module_error(void);
-
#endif /* __GMAIN_H */