Libical API Documentation 4.0
Loading...
Searching...
No Matches
libical_deprecated.h
1
5
6#ifndef LIBICAL_DEPRECATED_H
7#define LIBICAL_DEPRECATED_H
8
9/* Deprecated function macro */
10#if defined(NO_DEPRECATION_WARNINGS)
11#define LIBICAL_DEPRECATED(x) x
12#else
13#if !defined(LIBICAL_DEPRECATED)
14#ifdef __GNUC__
15#define LIBICAL_DEPRECATED(x) x __attribute__((deprecated))
16#elif defined(_MSC_VER)
17#define LIBICAL_DEPRECATED(x) __declspec(deprecated) x
18#else
19#define LIBICAL_DEPRECATED(x) x
20#endif
21#endif
22#endif
23
24#endif