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
29 lines
457 B
|
|
#ifndef __SODIUM_VERSION_H__
|
|
#define __SODIUM_VERSION_H__
|
|
|
|
#include "export.h"
|
|
|
|
#define SODIUM_VERSION_STRING "1.0.1"
|
|
|
|
#define SODIUM_LIBRARY_VERSION_MAJOR 7
|
|
#define SODIUM_LIBRARY_VERSION_MINOR 3
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SODIUM_EXPORT
|
|
const char *sodium_version_string(void);
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_library_version_major(void);
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_library_version_minor(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|