Sha256: 0308a1e0888162723996044bf5a2d5211ad0af96a5f796aee456c3d045b92e5e
Contents?: true
Size: 1.31 KB
Versions: 57
Compression:
Stored size: 1.31 KB
Contents
#ifndef CMARK_GFM_EXTENSIONS_EXPORT_H #define CMARK_GFM_EXTENSIONS_EXPORT_H #ifdef CMARK_GFM_EXTENSIONS_STATIC_DEFINE # define CMARK_GFM_EXTENSIONS_EXPORT # define CMARK_GFM_EXTENSIONS_NO_EXPORT #else # ifndef CMARK_GFM_EXTENSIONS_EXPORT # ifdef libcmark_gfm_extensions_EXPORTS /* We are building this library */ # define CMARK_GFM_EXTENSIONS_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define CMARK_GFM_EXTENSIONS_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef CMARK_GFM_EXTENSIONS_NO_EXPORT # define CMARK_GFM_EXTENSIONS_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef CMARK_GFM_EXTENSIONS_DEPRECATED # define CMARK_GFM_EXTENSIONS_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef CMARK_GFM_EXTENSIONS_DEPRECATED_EXPORT # define CMARK_GFM_EXTENSIONS_DEPRECATED_EXPORT CMARK_GFM_EXTENSIONS_EXPORT CMARK_GFM_EXTENSIONS_DEPRECATED #endif #ifndef CMARK_GFM_EXTENSIONS_DEPRECATED_NO_EXPORT # define CMARK_GFM_EXTENSIONS_DEPRECATED_NO_EXPORT CMARK_GFM_EXTENSIONS_NO_EXPORT CMARK_GFM_EXTENSIONS_DEPRECATED #endif #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef CMARK_GFM_EXTENSIONS_NO_DEPRECATED # define CMARK_GFM_EXTENSIONS_NO_DEPRECATED # endif #endif #endif /* CMARK_GFM_EXTENSIONS_EXPORT_H */
Version data entries
57 entries across 57 versions & 5 rubygems