PolarSSL v1.1.4
version.h
Go to the documentation of this file.
00001 
00027 /*
00028  * This set of compile-time defines and run-time variables can be used to
00029  * determine the version number of the PolarSSL library used.
00030  */
00031 #ifndef POLARSSL_VERSION_H
00032 #define POLARSSL_VERSION_H
00033 
00034 #include "config.h"
00035 
00040 #define POLARSSL_VERSION_MAJOR  1
00041 #define POLARSSL_VERSION_MINOR  1
00042 #define POLARSSL_VERSION_PATCH  4
00043 
00049 #define POLARSSL_VERSION_NUMBER         0x01010400
00050 #define POLARSSL_VERSION_STRING         "1.1.4"
00051 #define POLARSSL_VERSION_STRING_FULL    "PolarSSL 1.1.4"
00052 
00053 #if defined(POLARSSL_VERSION_C)
00054 
00061 unsigned int version_get_number( void );
00062 
00069 void version_get_string( char *string );
00070 
00077 void version_get_string_full( char *string );
00078 
00079 #endif /* POLARSSL_VERSION_C */
00080 
00081 #endif /* version.h */