mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-16 23:18:24 +08:00
30 lines
519 B
C
Executable File
30 lines
519 B
C
Executable File
|
|
#ifndef __SODIUM_VERSION_H__
|
|
#define __SODIUM_VERSION_H__
|
|
|
|
#include "export.h"
|
|
|
|
#define SODIUM_VERSION_STRING "@VERSION@"
|
|
|
|
#define SODIUM_LIBRARY_VERSION_MAJOR @SODIUM_LIBRARY_VERSION_MAJOR@
|
|
#define SODIUM_LIBRARY_VERSION_MINOR @SODIUM_LIBRARY_VERSION_MINOR@
|
|
|
|
#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
|