gtypes.h Move GLIB_VAR definition from gutils.h to gtypes.h

2001-02-10  Tor Lillqvist  <tml@iki.fi>

	* gtypes.h
	* gutils.h: Move GLIB_VAR definition from gutils.h to gtypes.h

	* glib.def
	* gmem.h: Mark glib_mem_profiler_table for export.
This commit is contained in:
Tor Lillqvist
2001-02-10 01:43:25 +00:00
committed by Tor Lillqvist
parent bf8cdc4655
commit aed994f714
16 changed files with 78 additions and 22 deletions

View File

@@ -305,16 +305,6 @@ g_trash_stack_height (GTrashStack **stack_p)
* we prefix variable declarations so they can
* properly get exported in windows dlls.
*/
#ifdef G_OS_WIN32
# ifdef GLIB_COMPILATION
# define GLIB_VAR __declspec(dllexport)
# else /* !GLIB_COMPILATION */
# define GLIB_VAR extern __declspec(dllimport)
# endif /* !GLIB_COMPILATION */
#else /* !G_OS_WIN32 */
# define GLIB_VAR extern
#endif /* !G_OS_WIN32 */
GLIB_VAR const guint glib_major_version;
GLIB_VAR const guint glib_minor_version;
GLIB_VAR const guint glib_micro_version;