Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
folium-app
GitHub Repository: folium-app/Folium
Path: blob/a-new-beginning/SharedDependencies/Sources/libslirp/include/libslirp-version.h
2 views
1
/* SPDX-License-Identifier: BSD-3-Clause */
2
#ifndef LIBSLIRP_VERSION_H_
3
#define LIBSLIRP_VERSION_H_
4
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
9
#define SLIRP_MAJOR_VERSION 4
10
#define SLIRP_MINOR_VERSION 0
11
#define SLIRP_MICRO_VERSION 0
12
13
#define SLIRP_CHECK_VERSION(major,minor,micro) \
14
(SLIRP_MAJOR_VERSION > (major) || \
15
(SLIRP_MAJOR_VERSION == (major) && SLIRP_MINOR_VERSION > (minor)) || \
16
(SLIRP_MAJOR_VERSION == (major) && SLIRP_MINOR_VERSION == (minor) && \
17
SLIRP_MICRO_VERSION >= (micro)))
18
19
#ifdef __cplusplus
20
} /* extern "C" */
21
#endif
22
23
#endif /* LIBSLIRP_VERSION_H_ */
24
25