diff options
Diffstat (limited to 'thirdparty/linuxbsd_headers/alsa/version.h')
-rw-r--r-- | thirdparty/linuxbsd_headers/alsa/version.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/thirdparty/linuxbsd_headers/alsa/version.h b/thirdparty/linuxbsd_headers/alsa/version.h new file mode 100644 index 0000000000..661ec6c8e2 --- /dev/null +++ b/thirdparty/linuxbsd_headers/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 3 /**< 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.3" + |