aboutsummaryrefslogtreecommitdiff
path: root/libnitrokey/version-libnk.h
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-08-23 18:05:11 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2018-08-23 18:05:11 +0200
commitdee6ebe5d0a9ea5d555852011d219a66d8746b0e (patch)
tree28fbfde73768edbf3bcd43b843e61360fd36df63 /libnitrokey/version-libnk.h
parentef171dfd5bf23da606597a251c327ad2c52ec7b8 (diff)
downloadlibnitrokey-dee6ebe5d0a9ea5d555852011d219a66d8746b0e.tar.gz
libnitrokey-dee6ebe5d0a9ea5d555852011d219a66d8746b0e.tar.bz2
Fix potential names clash with client projectsnames_clash
Nitrokey App was failing to build due to name clash with version.h file. Renamed. Tested CMake, QMake and Meson build. Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'libnitrokey/version-libnk.h')
-rw-r--r--libnitrokey/version-libnk.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/libnitrokey/version-libnk.h b/libnitrokey/version-libnk.h
new file mode 100644
index 0000000..6547af0
--- /dev/null
+++ b/libnitrokey/version-libnk.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