![]() |
libsigrok
0.3.0
sigrok hardware access and backend library
|
00001 /* 00002 * This file is part of the libsigrok project. 00003 * 00004 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com> 00005 * 00006 * This program is free software: you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation, either version 3 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 00020 #ifndef LIBSIGROK_VERSION_H 00021 #define LIBSIGROK_VERSION_H 00022 00023 /** 00024 * @file 00025 * 00026 * Version number definitions and macros. 00027 */ 00028 00029 /** 00030 * @ingroup grp_versions 00031 * 00032 * @{ 00033 */ 00034 00035 /* 00036 * Package version macros (can be used for conditional compilation). 00037 */ 00038 00039 /** The libsigrok package 'major' version number. */ 00040 #define SR_PACKAGE_VERSION_MAJOR 0 00041 00042 /** The libsigrok package 'minor' version number. */ 00043 #define SR_PACKAGE_VERSION_MINOR 3 00044 00045 /** The libsigrok package 'micro' version number. */ 00046 #define SR_PACKAGE_VERSION_MICRO 0 00047 00048 /** The libsigrok package version ("major.minor.micro") as string. */ 00049 #define SR_PACKAGE_VERSION_STRING "0.3.0" 00050 00051 /* 00052 * Library/libtool version macros (can be used for conditional compilation). 00053 */ 00054 00055 /** The libsigrok libtool 'current' version number. */ 00056 #define SR_LIB_VERSION_CURRENT 2 00057 00058 /** The libsigrok libtool 'revision' version number. */ 00059 #define SR_LIB_VERSION_REVISION 0 00060 00061 /** The libsigrok libtool 'age' version number. */ 00062 #define SR_LIB_VERSION_AGE 0 00063 00064 /** The libsigrok libtool version ("current:revision:age") as string. */ 00065 #define SR_LIB_VERSION_STRING "2:0:0" 00066 00067 /** @} */ 00068 00069 #endif
1.7.6.1