aboutsummaryrefslogtreecommitdiff
path: root/libnitrokey
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-06-19 15:08:13 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2018-06-19 15:08:13 +0200
commitb46dbfa63f344cd7e5323139cf71cd100a179682 (patch)
tree211be3e046dc4b398f7653b78c226d61626e9e68 /libnitrokey
parent9eb759fc6fa0b41ecfbe366b56384e3eb97dd081 (diff)
parent57c0b8c1235c5bff3640e85a8e17be20e8f422f3 (diff)
downloadlibnitrokey-b46dbfa63f344cd7e5323139cf71cd100a179682.tar.gz
libnitrokey-b46dbfa63f344cd7e5323139cf71cd100a179682.tar.bz2
Merge branch 'pr_117'
Library version getter for C API Fixes #117 Fixes #35 Fixes #62
Diffstat (limited to 'libnitrokey')
-rw-r--r--libnitrokey/version.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/libnitrokey/version.h b/libnitrokey/version.h
new file mode 100644
index 0000000..6547af0
--- /dev/null
+++ b/libnitrokey/version.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2018 Nitrokey UG
+ *
+ * This file is part of libnitrokey.
+ *
+ * libnitrokey is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * libnitrokey is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with libnitrokey. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * SPDX-License-Identifier: LGPL-3.0
+ */
+
+#ifndef LIBNITROKEY_VERSION_H
+#define LIBNITROKEY_VERSION_H
+
+namespace nitrokey {
+ unsigned int get_major_library_version();
+
+ unsigned int get_minor_library_version();
+
+ const char* get_library_version();
+}
+
+#endif