Sha256: e09df55a1ad9d42e198fe602038817891eec71803dbb81aa40324ba43f1f2fa6

Contents?: true

Size: 895 Bytes

Versions: 6

Compression:

Stored size: 895 Bytes

Contents

#ifndef CMARK_EXPORT_H
#define CMARK_EXPORT_H

#ifdef CMARK_STATIC_DEFINE
#  define CMARK_EXPORT
#  define CMARK_NO_EXPORT
#else
#  ifndef CMARK_EXPORT
#    ifdef libcmark_EXPORTS
        /* We are building this library */
#      define CMARK_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define CMARK_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

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

#ifndef CMARK_DEPRECATED
#  define CMARK_DEPRECATED __attribute__ ((__deprecated__))
#  define CMARK_DEPRECATED_EXPORT CMARK_EXPORT __attribute__ ((__deprecated__))
#  define CMARK_DEPRECATED_NO_EXPORT CMARK_NO_EXPORT __attribute__ ((__deprecated__))
#endif

#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define CMARK_NO_DEPRECATED
#endif

#endif

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
commonmarker-0.5.0 ext/commonmarker/cmark/build/src/cmark_export.h
commonmarker-0.4.1 ext/commonmarker/cmark/build/src/cmark_export.h
commonmarker-0.4.0 ext/commonmarker/cmark/build/src/cmark_export.h
commonmarker-0.3.0 ext/commonmarker/cmark/build/src/cmark_export.h
commonmarker-0.2.1 ext/commonmarker/cmark/build/src/cmark_export.h
commonmarker-0.1.3 ext/commonmarker/cmark/build/src/cmark_export.h