Sha256: 715fb6184b22a0a46928fb417bbe1d665601112baca4d0d240644eb5e4039a6b
Contents?: true
Size: 1.01 KB
Versions: 13
Compression:
Stored size: 1.01 KB
Contents
#ifndef MTEX2MML_EXPORT_H #define MTEX2MML_EXPORT_H #ifdef MTEX2MML_STATIC_DEFINE # define MTEX2MML_EXPORT # define MTEX2MML_NO_EXPORT #else # ifndef MTEX2MML_EXPORT # ifdef libmtex2MML_EXPORTS /* We are building this library */ # define MTEX2MML_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define MTEX2MML_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef MTEX2MML_NO_EXPORT # define MTEX2MML_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef MTEX2MML_DEPRECATED # define MTEX2MML_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef MTEX2MML_DEPRECATED_EXPORT # define MTEX2MML_DEPRECATED_EXPORT MTEX2MML_EXPORT MTEX2MML_DEPRECATED #endif #ifndef MTEX2MML_DEPRECATED_NO_EXPORT # define MTEX2MML_DEPRECATED_NO_EXPORT MTEX2MML_NO_EXPORT MTEX2MML_DEPRECATED #endif #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef MTEX2MML_NO_DEPRECATED # define MTEX2MML_NO_DEPRECATED # endif #endif #endif
Version data entries
13 entries across 13 versions & 1 rubygems