mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
12 lines
305 B
#ifndef CMARK_EXPORT_H
|
|
#define CMARK_EXPORT_H
|
|
|
|
#define CMARK_EXPORT
|
|
#define CMARK_NO_EXPORT
|
|
#define CMARK_DEPRECATED
|
|
#define CMARK_DEPRECATED_EXPORT CMARK_EXPORT CMARK_DEPRECATED
|
|
#define CMARK_DEPRECATED_NO_EXPORT CMARK_NO_EXPORT CMARK_DEPRECATED
|
|
#define CMARK_NO_DEPRECATED
|
|
|
|
#endif /* CMARK_EXPORT_H */
|
|
|
|
|