13
0
livetrax/libs/tk/ytkmm/ytkmm/gtkmmconfig.h
Robin Gareus ad51c7c2ba
Localize stripped down gtk2
This is intended mainly for GNU/Linux distros who will remove
GTK2 support in the near future.
2024-01-06 21:52:48 +01:00

30 lines
776 B
C

#ifndef _GTKMM_CONFIG_H
#define _GTKMM_CONFIG_H
#include <gdkmmconfig.h>
/* Defined when the --enable-api-atkmm configure argument was given */
#define GTKMM_ATKMM_ENABLED 1
/* Define to omit deprecated API from gtkmm. */
/* #undef GTKMM_DISABLE_DEPRECATED */
/* Defined when the --enable-maemo-extensions configure argument was given */
/* #undef GTKMM_MAEMO_EXTENSIONS_ENABLED */
#ifdef GTKMM_DLL
# if defined(GTKMM_BUILD) && defined(_WINDLL)
/* Do not dllexport as it is handled by gendef on MSVC */
# define GTKMM_API
# elif !defined(GTKMM_BUILD)
# define GTKMM_API __declspec(dllimport)
# else
/* Build a static library */
# define GTKMM_API
# endif /* GTKMM_BUILD - _WINDLL */
#else
# define GTKMM_API
#endif /* GTKMM_DLL */
#endif /* !_GTKMM_CONFIG_H */