Sha256: 16e528d773e01c6269feafdaad9775057b0fc997f87382b523b213ed87268fc2

Contents?: true

Size: 949 Bytes

Versions: 2

Compression:

Stored size: 949 Bytes

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__))
#  define MTEX2MML_DEPRECATED_EXPORT MTEX2MML_EXPORT __attribute__ ((__deprecated__))
#  define MTEX2MML_DEPRECATED_NO_EXPORT MTEX2MML_NO_EXPORT __attribute__ ((__deprecated__))
#endif

#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define MTEX2MML_NO_DEPRECATED
#endif

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mathematical-1.5.12 ext/mathematical/mtex2MML/build/mtex2mml_export.h
mathematical-1.5.0 ext/mathematical/mtex2MML/build/mtex2mml_export.h