 |
中国象棋控件 v2.0.13
|
2#ifndef CHINESECHESS_EXPORT_H
3#define CHINESECHESS_EXPORT_H
5#ifdef CHINESECHESS_STATIC_DEFINE
6# define CHINESECHESS_EXPORT
7# define CHINESECHESS_NO_EXPORT
9# ifndef CHINESECHESS_EXPORT
10# ifdef ChineseChess_EXPORTS
12# define CHINESECHESS_EXPORT __attribute__((visibility("default")))
15# define CHINESECHESS_EXPORT __attribute__((visibility("default")))
19# ifndef CHINESECHESS_NO_EXPORT
20# define CHINESECHESS_NO_EXPORT __attribute__((visibility("hidden")))
24#ifndef CHINESECHESS_DEPRECATED
25# define CHINESECHESS_DEPRECATED __attribute__ ((__deprecated__))
28#ifndef CHINESECHESS_DEPRECATED_EXPORT
29# define CHINESECHESS_DEPRECATED_EXPORT CHINESECHESS_EXPORT CHINESECHESS_DEPRECATED
32#ifndef CHINESECHESS_DEPRECATED_NO_EXPORT
33# define CHINESECHESS_DEPRECATED_NO_EXPORT CHINESECHESS_NO_EXPORT CHINESECHESS_DEPRECATED
37# ifndef CHINESECHESS_NO_DEPRECATED
38# define CHINESECHESS_NO_DEPRECATED