diff options
author | Tor Lillqvist <tml@iki.fi> | 1999-10-04 23:04:34 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 1999-10-04 23:04:34 +0000 |
commit | 7359af948d26f35b3d57dd4b4a482edd117c23f7 (patch) | |
tree | c49babe79f95f4fb79a705f883d23a0ac1ebf2ba /glib/gerror.c | |
parent | 65ef92cea45e23c6133d5386ac2c66dbb77d276a (diff) | |
download | glib-7359af948d26f35b3d57dd4b4a482edd117c23f7.tar.gz |
Don't define WIN32 and NATIVE_WIN32.
1999-10-05 Tor Lillqvist <tml@iki.fi>
* glibconfig.h.win32.in: Don't define WIN32 and NATIVE_WIN32.
* gerror.c (g_on_error_query): (Win32) Slightly more verbosity.
* build-dll: Don't strip.
* gmodule.h: (Win32) Use __declspec(dllexport) in G_MODULE_EXPORT
only with gcc.
Diffstat (limited to 'glib/gerror.c')
-rw-r--r-- | glib/gerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gerror.c b/glib/gerror.c index 89118d422..7fa77687c 100644 --- a/glib/gerror.c +++ b/glib/gerror.c @@ -143,7 +143,7 @@ g_on_error_query (const gchar *prg_name) if (!prg_name) prg_name = g_get_prgname (); - MessageBox (NULL, "Terminating", + MessageBox (NULL, "g_on_error_query called, program terminating", (prg_name && *prg_name) ? prg_name : NULL, MB_OK|MB_ICONERROR); _exit(0); |