mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
14 lines
439 B
C
14 lines
439 B
C
/*
|
|
* version.h
|
|
*/
|
|
|
|
#define LD10K1_LIB_MAJOR 0 /**< major number of library version */
|
|
#define LD10K1_LIB_MINOR 1 /**< minor number of library version */
|
|
#define LD10K1_LIB_SUBMINOR 8 /**< subminor number of library version */
|
|
/** library version */
|
|
#define LD10K1_LIB_VERSION ((LD10K1_LIB_MAJOR<<16)|\
|
|
(LD10K1_LIB_MINOR<<8)|\
|
|
LD10K1_LIB_SUBMINOR)
|
|
/** library version (string) */
|
|
#define LD10K1_LIB_VERSION_STR "0.1.8"
|
|
|