ssh

Dependents:   OS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers version.h Source File

version.h

00001 /* version.h.in
00002  *
00003  * Copyright (C) 2014-2016 wolfSSL Inc.
00004  *
00005  * This file is part of wolfSSH.
00006  *
00007  * wolfSSH is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 3 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * wolfSSH is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with wolfSSH.  If not, see <http://www.gnu.org/licenses/>.
00019  */
00020 
00021 
00022 /*
00023  * The version header provides the current version number to the code
00024  * based and is updated automatically by the configure script. A copy
00025  * of the last generated copy of version.h is included with the
00026  * distribution for environments that do not use configure.
00027  */
00028 
00029 
00030 #pragma once
00031 
00032 #ifdef __cplusplus
00033 extern "C" {
00034 #endif
00035 
00036 #define LIBWOLFSSH_VERSION_STRING "1.2.0"
00037 #define LIBWOLFSSH_VERSION_HEX 0x01002000
00038 
00039 #ifdef __cplusplus
00040 }
00041 #endif
00042