diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 2000-09-28 07:32:07 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 2000-09-28 07:32:07 +0000 |
commit | ccee9157202b9556708ca997262995963abdc10e (patch) | |
tree | c212d14244ddd59d0bc44c59e0ea47e645049420 /gmodule | |
parent | bef233642ee5a978ae94ef8be6d79879d1766985 (diff) |
Moved declaration of g_log_domain_gmodule up before the inclusion of
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmodule.h: Moved declaration of g_log_domain_gmodule up before
the inclusion of glib.h to make it compile on non-gcc compilers.
Diffstat (limited to 'gmodule')
-rw-r--r-- | gmodule/ChangeLog | 5 | ||||
-rw-r--r-- | gmodule/gmodule.h | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog index 24114057e..4f0d91535 100644 --- a/gmodule/ChangeLog +++ b/gmodule/ChangeLog @@ -1,3 +1,8 @@ +2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de> + + * gmodule.h: Moved declaration of g_log_domain_gmodule up before + the inclusion of glib.h to make it compile on non-gcc compilers. + 2000-07-22 Tor Lillqvist <tml@iki.fi> * makefile.mingw.in: Remove leftover gmodule-win32res.o stuff. The diff --git a/gmodule/gmodule.h b/gmodule/gmodule.h index 3f2148c01..6bc75064a 100644 --- a/gmodule/gmodule.h +++ b/gmodule/gmodule.h @@ -27,15 +27,13 @@ #ifndef __GMODULE_H__ #define __GMODULE_H__ +extern const char *g_log_domain_gmodule; #include <glib.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ -extern const char *g_log_domain_gmodule; - - /* exporting and importing functions, this is special cased * to feature Windows dll stubs. */ |