Libical API Documentation
4.0 UNRELEASED
Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
src
libical
icalversion.h
Go to the documentation of this file.
1
/*======================================================================
2
FILE: icalversion.h
3
CREATOR: eric 20 March 1999
4
5
SPDX-FileCopyrightText: 2000, Eric Busboom <eric@civicknowledge.com>
6
SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7
======================================================================*/
8
13
14
#ifndef ICAL_VERSION_H
15
#define ICAL_VERSION_H
16
20
#define ICAL_PACKAGE "libical"
24
#define ICAL_VERSION "4.0"
25
29
#define ICAL_MAJOR_VERSION (3)
33
#define ICAL_MINOR_VERSION (99)
37
#define ICAL_PATCH_VERSION (99)
41
#define ICAL_MICRO_VERSION ICAL_PATCH_VERSION
42
52
#define ICAL_CHECK_VERSION(major,minor,micro) \
53
(ICAL_MAJOR_VERSION > (major) || \
54
(ICAL_MAJOR_VERSION == (major) && ICAL_MINOR_VERSION > (minor)) || \
55
(ICAL_MAJOR_VERSION == (major) && ICAL_MINOR_VERSION == (minor) && \
56
ICAL_MICRO_VERSION >= (micro)))
57
58
#endif
Generated on
for Libical API Documentation by
1.14.0