00001
00027
00028
00029
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 3
00042 #define POLARSSL_VERSION_PATCH 2
00043
00049 #define POLARSSL_VERSION_NUMBER 0x01030200
00050 #define POLARSSL_VERSION_STRING "1.3.2"
00051 #define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.3.2"
00052
00053 #if defined(POLARSSL_VERSION_C)
00054
00055 #ifdef __cplusplus
00056 extern "C" {
00057 #endif
00058
00065 unsigned int version_get_number( void );
00066
00073 void version_get_string( char *string );
00074
00081 void version_get_string_full( char *string );
00082
00083 #ifdef __cplusplus
00084 }
00085 #endif
00086
00087 #endif
00088
00089 #endif