summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--sigrokdecode.h.in12
-rw-r--r--version.c61
3 files changed, 74 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 4f34e5a..377b729 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -25,7 +25,7 @@ SUBDIRS = decoders
lib_LTLIBRARIES = libsigrokdecode.la
libsigrokdecode_la_SOURCES = controller.c decoder.c log.c util.c exception.c \
- module_sigrokdecode.c type_decoder.c type_logic.c
+ module_sigrokdecode.c type_decoder.c type_logic.c version.c
libsigrokdecode_la_CPPFLAGS = $(CPPFLAGS_PYTHON) \
-DDECODERS_DIR='"$(DECODERS_DIR)"'
diff --git a/sigrokdecode.h.in b/sigrokdecode.h.in
index 7a435bc..b158e37 100644
--- a/sigrokdecode.h.in
+++ b/sigrokdecode.h.in
@@ -277,6 +277,18 @@ SRD_API int srd_log_callback_set_default(void);
SRD_API int srd_log_logdomain_set(const char *logdomain);
SRD_API char *srd_log_logdomain_get(void);
+/*--- version.c -------------------------------------------------------------*/
+
+SRD_API int srd_package_version_major_get(void);
+SRD_API int srd_package_version_minor_get(void);
+SRD_API int srd_package_version_micro_get(void);
+SRD_API const char *srd_package_version_string_get(void);
+
+SRD_API int srd_lib_version_current_get(void);
+SRD_API int srd_lib_version_revision_get(void);
+SRD_API int srd_lib_version_age_get(void);
+SRD_API const char *srd_lib_version_string_get(void);
+
#ifdef __cplusplus
}
#endif
diff --git a/version.c b/version.c
new file mode 100644
index 0000000..9116574
--- /dev/null
+++ b/version.c
@@ -0,0 +1,61 @@
+/*
+ * This file is part of the sigrok project.
+ *
+ * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "sigrokdecode.h"
+
+SRD_API int srd_package_version_major_get(void)
+{
+ return SRD_PACKAGE_VERSION_MAJOR;
+}
+
+SRD_API int srd_package_version_minor_get(void)
+{
+ return SRD_PACKAGE_VERSION_MINOR;
+}
+
+SRD_API int srd_package_version_micro_get(void)
+{
+ return SRD_PACKAGE_VERSION_MICRO;
+}
+
+SRD_API const char *srd_package_version_string_get(void)
+{
+ return SRD_PACKAGE_VERSION_STRING;
+}
+
+SRD_API int srd_lib_version_current_get(void)
+{
+ return SRD_LIB_VERSION_CURRENT;
+}
+
+SRD_API int srd_lib_version_revision_get(void)
+{
+ return SRD_LIB_VERSION_REVISION;
+}
+
+SRD_API int srd_lib_version_age_get(void)
+{
+ return SRD_LIB_VERSION_AGE;
+}
+
+SRD_API const char *srd_lib_version_string_get(void)
+{
+ return SRD_LIB_VERSION_STRING;
+}