summaryrefslogtreecommitdiff
path: root/builds/msvc/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'builds/msvc/version.h')
-rw-r--r--builds/msvc/version.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/builds/msvc/version.h b/builds/msvc/version.h
new file mode 100644
index 0000000..ca13a74
--- /dev/null
+++ b/builds/msvc/version.h
@@ -0,0 +1,29 @@
+
+#ifndef __SODIUM_VERSION_H__
+#define __SODIUM_VERSION_H__
+
+#include "export.h"
+
+#define SODIUM_VERSION_STRING "0.6.1"
+
+#define SODIUM_LIBRARY_VERSION_MAJOR 6
+#define SODIUM_LIBRARY_VERSION_MINOR 1
+
+#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