Libical API Documentation
4.0
Loading...
Searching...
No Matches
src
libical
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
Generated on Fri May 30 2025 11:51:05 for Libical API Documentation by
1.13.2