You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
457 B

  1. #ifndef __SODIUM_VERSION_H__
  2. #define __SODIUM_VERSION_H__
  3. #include "export.h"
  4. #define SODIUM_VERSION_STRING "1.0.1"
  5. #define SODIUM_LIBRARY_VERSION_MAJOR 7
  6. #define SODIUM_LIBRARY_VERSION_MINOR 3
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. SODIUM_EXPORT
  11. const char *sodium_version_string(void);
  12. SODIUM_EXPORT
  13. int sodium_library_version_major(void);
  14. SODIUM_EXPORT
  15. int sodium_library_version_minor(void);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif