blob: be3f7536173ea72d70f3848cc0fd3c26dc3f2cf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
/**
* @file
* Definitions of DPDK version numbers
*/
#ifndef _RTE_VERSION_H_
#define _RTE_VERSION_H_
#include <string.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Macro to compute a version number usable for comparisons
*/
#define RTE_VERSION_NUM(a,b,c,d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
/**
* All version numbers in one to compare with RTE_VERSION_NUM()
*/
#define RTE_VERSION RTE_VERSION_NUM( \
RTE_VER_YEAR, \
RTE_VER_MONTH, \
RTE_VER_MINOR, \
RTE_VER_RELEASE)
/**
* Function to return DPDK version prefix string
*/
const char *rte_version_prefix(void);
/**
* Function to return DPDK version year
*/
unsigned int rte_version_year(void);
/**
* Function to return DPDK version month
*/
unsigned int rte_version_month(void);
/**
* Function to return DPDK minor version number
*/
unsigned int rte_version_minor(void);
/**
* Function to return DPDK version suffix for any release candidates
*/
const char *rte_version_suffix(void);
/**
* Function to return DPDK version release candidate value
*/
unsigned int rte_version_release(void);
/**
* Function returning version string
* @return
* DPDK version string
*/
const char *rte_version(void);
#ifdef __cplusplus
}
#endif
#endif /* RTE_VERSION_H */
|