mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
12 lines
305 B
C
12 lines
305 B
C
#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 */
|
|
|