Sha256: e9c9e7a59a6adf001b91086ac6c5e3542f4a070eb59711e9757995baa14de39a

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

#ifndef CMARKEXTENSIONS_EXPORT_H
#define CMARKEXTENSIONS_EXPORT_H

#ifdef CMARKEXTENSIONS_STATIC_DEFINE
#  define CMARKEXTENSIONS_EXPORT
#  define CMARKEXTENSIONS_NO_EXPORT
#else
#  ifndef CMARKEXTENSIONS_EXPORT
#    ifdef libcmarkextensions_EXPORTS
        /* We are building this library */
#      define CMARKEXTENSIONS_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define CMARKEXTENSIONS_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

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

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

#ifndef CMARKEXTENSIONS_DEPRECATED_EXPORT
#  define CMARKEXTENSIONS_DEPRECATED_EXPORT CMARKEXTENSIONS_EXPORT CMARKEXTENSIONS_DEPRECATED
#endif

#ifndef CMARKEXTENSIONS_DEPRECATED_NO_EXPORT
#  define CMARKEXTENSIONS_DEPRECATED_NO_EXPORT CMARKEXTENSIONS_NO_EXPORT CMARKEXTENSIONS_DEPRECATED
#endif

#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef CMARKEXTENSIONS_NO_DEPRECATED
#    define CMARKEXTENSIONS_NO_DEPRECATED
#  endif
#endif

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
commonmarker-0.14.9 ext/commonmarker/cmark/build/extensions/cmarkextensions_export.h