Home | History | Annotate | Line # | Download | only in msvc
      1 
      2 #ifndef sodium_version_H
      3 #define sodium_version_H
      4 
      5 #include "export.h"
      6 
      7 #define SODIUM_VERSION_STRING "1.0.16"
      8 
      9 #define SODIUM_LIBRARY_VERSION_MAJOR 10
     10 #define SODIUM_LIBRARY_VERSION_MINOR 1
     11 
     12 #ifdef __cplusplus
     13 extern "C" {
     14 #endif
     15 
     16 SODIUM_EXPORT
     17 const char *sodium_version_string(void);
     18 
     19 SODIUM_EXPORT
     20 int         sodium_library_version_major(void);
     21 
     22 SODIUM_EXPORT
     23 int         sodium_library_version_minor(void);
     24 
     25 SODIUM_EXPORT
     26 int         sodium_library_minimal(void);
     27 
     28 #ifdef __cplusplus
     29 }
     30 #endif
     31 
     32 #endif
     33