Your IP : 216.73.216.48
#ifndef SYNDICATION_EXPORT_H
#define SYNDICATION_EXPORT_H
#ifdef SYNDICATION_STATIC_DEFINE
# define SYNDICATION_EXPORT
# define SYNDICATION_NO_EXPORT
#else
# ifndef SYNDICATION_EXPORT
# ifdef syndication_EXPORTS
/* We are building this library */
# define SYNDICATION_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define SYNDICATION_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef SYNDICATION_NO_EXPORT
# define SYNDICATION_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef SYNDICATION_DEPRECATED
# define SYNDICATION_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef SYNDICATION_DEPRECATED_EXPORT
# define SYNDICATION_DEPRECATED_EXPORT SYNDICATION_EXPORT SYNDICATION_DEPRECATED
#endif
#ifndef SYNDICATION_DEPRECATED_NO_EXPORT
# define SYNDICATION_DEPRECATED_NO_EXPORT SYNDICATION_NO_EXPORT SYNDICATION_DEPRECATED
#endif
#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define SYNDICATION_NO_DEPRECATED
#endif
#endif