diff options
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. */ |