 |
农历日历 v1.0.4
|
2#ifndef LUNARCALENDAR_EXPORT_H
3#define LUNARCALENDAR_EXPORT_H
5#ifdef LUNARCALENDAR_STATIC_DEFINE
6# define LUNARCALENDAR_EXPORT
7# define LUNARCALENDAR_NO_EXPORT
9# ifndef LUNARCALENDAR_EXPORT
10# ifdef LunarCalendar_EXPORTS
12# define LUNARCALENDAR_EXPORT __attribute__((visibility("default")))
15# define LUNARCALENDAR_EXPORT __attribute__((visibility("default")))
19# ifndef LUNARCALENDAR_NO_EXPORT
20# define LUNARCALENDAR_NO_EXPORT __attribute__((visibility("hidden")))
24#ifndef LUNARCALENDAR_DEPRECATED
25# define LUNARCALENDAR_DEPRECATED __attribute__ ((__deprecated__))
28#ifndef LUNARCALENDAR_DEPRECATED_EXPORT
29# define LUNARCALENDAR_DEPRECATED_EXPORT LUNARCALENDAR_EXPORT LUNARCALENDAR_DEPRECATED
32#ifndef LUNARCALENDAR_DEPRECATED_NO_EXPORT
33# define LUNARCALENDAR_DEPRECATED_NO_EXPORT LUNARCALENDAR_NO_EXPORT LUNARCALENDAR_DEPRECATED
37# ifndef LUNARCALENDAR_NO_DEPRECATED
38# define LUNARCALENDAR_NO_DEPRECATED