1 /* gio/giommconfig.h.  Generated from giommconfig.h.in by configure.  */
2 #ifndef _GIOMM_CONFIG_H
3 #define _GIOMM_CONFIG_H
4 
5 #include <glibmmconfig.h>
6 
7 /* Define to omit deprecated API from the library. */
8 /* #undef GIOMM_DISABLE_DEPRECATED */
9 
10 /* Major version number of giomm. */
11 #define GIOMM_MAJOR_VERSION 2
12 
13 /* Micro version number of giomm. */
14 #define GIOMM_MICRO_VERSION 2
15 
16 /* Minor version number of giomm. */
17 #define GIOMM_MINOR_VERSION 64
18 
19 /* Define if giomm is built as a static library */
20 /* #undef GIOMM_STATIC_LIB */
21 
22 // Enable DLL-specific stuff only when not building a static library
23 #if !defined(__CYGWIN__) && (defined(__MINGW32__) || defined(_MSC_VER)) && !defined(GIOMM_STATIC_LIB)
24 # define GIOMM_DLL 1
25 #endif
26 
27 #ifdef GIOMM_DLL
28 # if defined(GIOMM_BUILD)
29 #  define GIOMM_API __declspec(dllexport)
30 # else
31 #  define GIOMM_API __declspec(dllimport)
32 # endif
33 /* Build a static library or non-native-Windows library */
34 #else
35 # define GIOMM_API
36 #endif /* GIOMM_DLL */
37 
38 #endif /* _GIOMM_CONFIG_H */
39