libsigrok  0.4.0
sigrok hardware access and backend library
version.h
Go to the documentation of this file.
1 /* include/libsigrok/version.h. Generated from version.h.in by configure. */
2 /*
3  * This file is part of the libsigrok project.
4  *
5  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef LIBSIGROK_VERSION_H
22 #define LIBSIGROK_VERSION_H
23 
24 /**
25  * @file
26  *
27  * Version number definitions and macros.
28  */
29 
30 /**
31  * @ingroup grp_versions
32  *
33  * @{
34  */
35 
36 /*
37  * Package version macros (can be used for conditional compilation).
38  */
39 
40 /** The libsigrok package 'major' version number. */
41 #define SR_PACKAGE_VERSION_MAJOR 0
42 
43 /** The libsigrok package 'minor' version number. */
44 #define SR_PACKAGE_VERSION_MINOR 4
45 
46 /** The libsigrok package 'micro' version number. */
47 #define SR_PACKAGE_VERSION_MICRO 0
48 
49 /** The libsigrok package version ("major.minor.micro") as string. */
50 #define SR_PACKAGE_VERSION_STRING "0.4.0"
51 
52 /*
53  * Library/libtool version macros (can be used for conditional compilation).
54  */
55 
56 /** The libsigrok libtool 'current' version number. */
57 #define SR_LIB_VERSION_CURRENT 3
58 
59 /** The libsigrok libtool 'revision' version number. */
60 #define SR_LIB_VERSION_REVISION 0
61 
62 /** The libsigrok libtool 'age' version number. */
63 #define SR_LIB_VERSION_AGE 0
64 
65 /** The libsigrok libtool version ("current:revision:age") as string. */
66 #define SR_LIB_VERSION_STRING "3:0:0"
67 
68 /** @} */
69 
70 #endif