summaryrefslogtreecommitdiff
path: root/include/alsa/version.h
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-10-29 00:50:38 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-10-29 00:50:38 +0200
commitc4d89540574dfb6a7418ed8cdd34e3cb2df585e7 (patch)
treed4dbb844ddb68e64a7dd8edb91c662c82417b6b8 /include/alsa/version.h
Initial commit
Diffstat (limited to 'include/alsa/version.h')
-rw-r--r--include/alsa/version.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/alsa/version.h b/include/alsa/version.h
new file mode 100644
index 0000000..d640ad5
--- /dev/null
+++ b/include/alsa/version.h
@@ -0,0 +1,15 @@
+/*
+ * version.h
+ */
+
+#define SND_LIB_MAJOR 1 /**< major number of library version */
+#define SND_LIB_MINOR 1 /**< minor number of library version */
+#define SND_LIB_SUBMINOR 7 /**< subminor number of library version */
+#define SND_LIB_EXTRAVER 1000000 /**< extra version number, used mainly for betas */
+/** library version */
+#define SND_LIB_VERSION ((SND_LIB_MAJOR<<16)|\
+ (SND_LIB_MINOR<<8)|\
+ SND_LIB_SUBMINOR)
+/** library version (string) */
+#define SND_LIB_VERSION_STR "1.1.7"
+