mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-15 08:22:07 -04:00
20 lines
323 B
C
20 lines
323 B
C
#ifndef WLR_API_H
|
|
#define WLR_API_H
|
|
|
|
#ifndef WLR_IMPLEMENTATION
|
|
|
|
#if __STDC_VERSION__ >= 202311L
|
|
#define WLR_DEPRECATED(msg) [[deprecated(msg)]]
|
|
#elif defined(__GNUC__)
|
|
#define WLR_DEPRECATED(msg) __attribute__((deprecated(msg)))
|
|
#else
|
|
#define WLR_DEPRECATED(msg)
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define WLR_DEPRECATED(msg)
|
|
|
|
#endif
|
|
|
|
#endif
|