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