Sha256: a2e78702e821caa82d68b6b558a5a39956aa412430d0f2119d351a75a73c8c7c

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 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 /* MTEX2MML_EXPORT_H */

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mathematical-1.6.14 ext/mathematical/mtex2MML/build/mtex2mml_export.h
mathematical-1.6.13 ext/mathematical/mtex2MML/build/mtex2mml_export.h