File:  [parser3project] / win32 / rabbitmq / include / rabbitmq-c / export.h
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Sun Sep 20 16:14:04 2026 UTC (5 days, 7 hours ago) by moko
Branches: MAIN
CVS tags: HEAD
precompiled static librabbitmq without SSL support added (related to feature #1288)


#ifndef RABBITMQ_C_EXPORT_H
#define RABBITMQ_C_EXPORT_H

#ifdef AMQP_STATIC
#  define AMQP_EXPORT
#  define AMQP_NO_EXPORT
#else
#  ifndef AMQP_EXPORT
#    ifdef rabbitmq_static_EXPORTS
        /* We are building this library */
#      define AMQP_EXPORT 
#    else
        /* We are using this library */
#      define AMQP_EXPORT 
#    endif
#  endif

#  ifndef AMQP_NO_EXPORT
#    define AMQP_NO_EXPORT 
#  endif
#endif

#ifndef AMQP_DEPRECATED
#  define AMQP_DEPRECATED __declspec(deprecated)
#endif

#ifndef AMQP_DEPRECATED_EXPORT
#  define AMQP_DEPRECATED_EXPORT AMQP_EXPORT AMQP_DEPRECATED
#endif

#ifndef AMQP_DEPRECATED_NO_EXPORT
#  define AMQP_DEPRECATED_NO_EXPORT AMQP_NO_EXPORT AMQP_DEPRECATED
#endif

/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef AMQP_NO_DEPRECATED
#    define AMQP_NO_DEPRECATED
#  endif
#endif

#endif /* RABBITMQ_C_EXPORT_H */

E-mail: