20 lines
672 B
C
20 lines
672 B
C
//
|
|
// WebKitDefines.h
|
|
// SBrowser
|
|
//
|
|
// Created by James Magahern on 4/11/25.
|
|
//
|
|
|
|
#ifndef WebKitDefines_h
|
|
#define WebKitDefines_h
|
|
|
|
#define WK_API_AVAILABLE(...)
|
|
#define WK_API_UNAVAILABLE(...)
|
|
#define WK_CLASS_AVAILABLE(...) __attribute__((visibility("default"))) WK_API_AVAILABLE(__VA_ARGS__)
|
|
#define WK_API_DEPRECATED(_message, ...) __attribute__((deprecated(_message)))
|
|
#define WK_API_DEPRECATED_WITH_REPLACEMENT(_replacement, ...) __attribute__((deprecated("use " #_replacement)))
|
|
#define WK_CLASS_DEPRECATED_WITH_REPLACEMENT(_replacement, ...) __attribute__((visibility("default"))) __attribute__((deprecated("use " #_replacement)))
|
|
|
|
|
|
#endif /* WebKitDefines_h */
|