| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/local/include/cbor/ |
Upload File : |
#ifndef CBOR_EXPORT_H
#define CBOR_EXPORT_H
#ifdef CBOR_STATIC_DEFINE
# define CBOR_EXPORT
# define CBOR_NO_EXPORT
#else
# ifndef CBOR_EXPORT
# ifdef cbor_EXPORTS
/* We are building this library */
# define CBOR_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define CBOR_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef CBOR_NO_EXPORT
# define CBOR_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef CBOR_DEPRECATED
# define CBOR_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef CBOR_DEPRECATED_EXPORT
# define CBOR_DEPRECATED_EXPORT CBOR_EXPORT CBOR_DEPRECATED
#endif
#ifndef CBOR_DEPRECATED_NO_EXPORT
# define CBOR_DEPRECATED_NO_EXPORT CBOR_NO_EXPORT CBOR_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef CBOR_NO_DEPRECATED
# define CBOR_NO_DEPRECATED
# endif
#endif
#endif /* CBOR_EXPORT_H */