quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

version.h (509B)


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