summaryrefslogtreecommitdiff
path: root/builds/msvc/version.h
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2014-08-11 13:49:21 -0400
committerMicah Anderson <micah@riseup.net>2014-08-11 13:49:21 -0400
commit2e59f9740a29439df7c7a56cf0ae83dec3081d31 (patch)
treed5e7c4e74c9a0f1ea999327d2e68b1dd27be00e0 /builds/msvc/version.h
initial import of debian version from mentors0.6.1
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