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