libnl 3.10.0
version.h
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2008-2011 Thomas Graf <tgraf@suug.ch>
4 */
5
6#ifndef NETLINK_VERSION_H_
7#define NETLINK_VERSION_H_
8
9/* Compile Time Versioning Information */
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#define LIBNL_STRING "libnl 3.10.0"
16#define LIBNL_VERSION "3.10.0"
17
18#define LIBNL_VER_MAJ 3
19#define LIBNL_VER_MIN 10
20#define LIBNL_VER_MIC 0
21#define LIBNL_VER(maj,min) ((maj) << 8 | (min))
22#define LIBNL_VER_NUM LIBNL_VER(LIBNL_VER_MAJ, LIBNL_VER_MIN)
23
24#define LIBNL_CURRENT 226
25#define LIBNL_REVISION 0
26#define LIBNL_AGE 26
27
28/* Run-time version information */
29
30extern const int nl_ver_num;
31extern const int nl_ver_maj;
32extern const int nl_ver_min;
33extern const int nl_ver_mic;
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif