Sha256: 0f6f5c9b3eacd69207df5b38b0f2d7e6c7cb9482e6a0e9c127a2a8c68de9fc8f
Contents?: true
Size: 1.17 KB
Versions: 13
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 libcmark_gfmextensions_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
13 entries across 12 versions & 2 rubygems