|
|
|
#ifndef POPPLER_PUBLIC_H
|
|
#define POPPLER_PUBLIC_H
|
|
|
|
#ifdef POPPLER_GLIB_STATIC_DEFINE
|
|
# define POPPLER_PUBLIC
|
|
# define POPPLER_GLIB_NO_EXPORT
|
|
#else
|
|
# ifndef POPPLER_PUBLIC
|
|
# ifdef poppler_glib_EXPORTS
|
|
|
|
# define POPPLER_PUBLIC __declspec(dllexport)
|
|
# else
|
|
|
|
# define POPPLER_PUBLIC __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef POPPLER_GLIB_NO_EXPORT
|
|
# define POPPLER_GLIB_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef POPPLER_GLIB_DEPRECATED
|
|
# define POPPLER_GLIB_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef POPPLER_GLIB_DEPRECATED_EXPORT
|
|
# define POPPLER_GLIB_DEPRECATED_EXPORT POPPLER_PUBLIC POPPLER_GLIB_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef POPPLER_GLIB_DEPRECATED_NO_EXPORT
|
|
# define POPPLER_GLIB_DEPRECATED_NO_EXPORT POPPLER_GLIB_NO_EXPORT POPPLER_GLIB_DEPRECATED
|
|
#endif
|
|
|
|
#if 0
|
|
# ifndef POPPLER_GLIB_NO_DEPRECATED
|
|
# define POPPLER_GLIB_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|
|
|