19308c5d5b
Even though these functions were exported, the number of applications using them directly is very likely to be zero. Still, bump the major library version to be safe and compliant.
30 lines
457 B
C
30 lines
457 B
C
|
|
#ifndef __SODIUM_VERSION_H__
|
|
#define __SODIUM_VERSION_H__
|
|
|
|
#include "export.h"
|
|
|
|
#define SODIUM_VERSION_STRING "1.0.5"
|
|
|
|
#define SODIUM_LIBRARY_VERSION_MAJOR 8
|
|
#define SODIUM_LIBRARY_VERSION_MINOR 0
|
|
|
|
#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
|