Your IP : 216.73.216.48


Current Path : /usr/X11/include/kabc/
Upload File :
Current File : //usr/X11/include/kabc/kabc_export.h

#ifndef KABC_EXPORT_H
#define KABC_EXPORT_H

#ifdef KABC_STATIC_DEFINE
#  define KABC_EXPORT
#  define KABC_NO_EXPORT
#else
#  ifndef KABC_EXPORT
#    ifdef kabc_EXPORTS
        /* We are building this library */
#      define KABC_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define KABC_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

#  ifndef KABC_NO_EXPORT
#    define KABC_NO_EXPORT __attribute__((visibility("hidden")))
#  endif
#endif

#ifndef KABC_DEPRECATED
#  define KABC_DEPRECATED __attribute__ ((__deprecated__))
#endif

#ifndef KABC_DEPRECATED_EXPORT
#  define KABC_DEPRECATED_EXPORT KABC_EXPORT KABC_DEPRECATED
#endif

#ifndef KABC_DEPRECATED_NO_EXPORT
#  define KABC_DEPRECATED_NO_EXPORT KABC_NO_EXPORT KABC_DEPRECATED
#endif

#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define KABC_NO_DEPRECATED
#endif

#endif